Struct wasi_common::dir::DirCaps [−][src]
pub struct DirCaps { /* fields omitted */ }
Implementations
impl DirCaps
[src]
impl DirCaps
[src]pub const CREATE_DIRECTORY: DirCaps
[src]
pub const CREATE_FILE: DirCaps
[src]
pub const LINK_SOURCE: DirCaps
[src]
pub const LINK_TARGET: DirCaps
[src]
pub const OPEN: DirCaps
[src]
pub const READDIR: DirCaps
[src]
pub const READLINK: DirCaps
[src]
pub const RENAME_SOURCE: DirCaps
[src]
pub const RENAME_TARGET: DirCaps
[src]
pub const SYMLINK: DirCaps
[src]
pub const REMOVE_DIRECTORY: DirCaps
[src]
pub const UNLINK_FILE: DirCaps
[src]
pub const PATH_FILESTAT_GET: DirCaps
[src]
pub const PATH_FILESTAT_SET_TIMES: DirCaps
[src]
pub const FILESTAT_GET: DirCaps
[src]
pub const FILESTAT_SET_TIMES: DirCaps
[src]
pub fn from_bits(bits: u32) -> Option<DirCaps>
[src]
pub fn from_bits(bits: u32) -> Option<DirCaps>
[src]Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: u32) -> DirCaps
[src]
pub const fn from_bits_truncate(bits: u32) -> DirCaps
[src]Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u32) -> DirCaps
[src]
pub const unsafe fn from_bits_unchecked(bits: u32) -> DirCaps
[src]Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn intersects(&self, other: DirCaps) -> bool
[src]
pub const fn intersects(&self, other: DirCaps) -> bool
[src]Returns true
if there are flags common to both self
and other
.
Trait Implementations
impl BitAndAssign<DirCaps> for DirCaps
[src]
impl BitAndAssign<DirCaps> for DirCaps
[src]fn bitand_assign(&mut self, other: DirCaps)
[src]
fn bitand_assign(&mut self, other: DirCaps)
[src]Disables all flags disabled in the set.
impl BitOrAssign<DirCaps> for DirCaps
[src]
impl BitOrAssign<DirCaps> for DirCaps
[src]fn bitor_assign(&mut self, other: DirCaps)
[src]
fn bitor_assign(&mut self, other: DirCaps)
[src]Adds the set of flags.
impl BitXorAssign<DirCaps> for DirCaps
[src]
impl BitXorAssign<DirCaps> for DirCaps
[src]fn bitxor_assign(&mut self, other: DirCaps)
[src]
fn bitxor_assign(&mut self, other: DirCaps)
[src]Toggles the set of flags.
impl Extend<DirCaps> for DirCaps
[src]
impl Extend<DirCaps> for DirCaps
[src]fn extend<T: IntoIterator<Item = DirCaps>>(&mut self, iterator: T)
[src]
fn extend<T: IntoIterator<Item = DirCaps>>(&mut self, iterator: T)
[src]Extends a collection with the contents of an iterator. Read more
fn extend_one(&mut self, item: A)
[src]
fn extend_one(&mut self, item: A)
[src]extend_one
)Extends a collection with exactly one element.
fn extend_reserve(&mut self, additional: usize)
[src]
fn extend_reserve(&mut self, additional: usize)
[src]extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
impl FromIterator<DirCaps> for DirCaps
[src]
impl FromIterator<DirCaps> for DirCaps
[src]impl Ord for DirCaps
[src]
impl Ord for DirCaps
[src]impl PartialOrd<DirCaps> for DirCaps
[src]
impl PartialOrd<DirCaps> for DirCaps
[src]fn partial_cmp(&self, other: &DirCaps) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &DirCaps) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl SubAssign<DirCaps> for DirCaps
[src]
impl SubAssign<DirCaps> for DirCaps
[src]fn sub_assign(&mut self, other: DirCaps)
[src]
fn sub_assign(&mut self, other: DirCaps)
[src]Disables all flags enabled in the set.
impl Copy for DirCaps
[src]
impl Eq for DirCaps
[src]
impl StructuralEq for DirCaps
[src]
impl StructuralPartialEq for DirCaps
[src]
Auto Trait Implementations
impl RefUnwindSafe for DirCaps
impl Send for DirCaps
impl Sync for DirCaps
impl Unpin for DirCaps
impl UnwindSafe for DirCaps
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,