Struct nix::sys::stat::SFlag [−]
pub struct SFlag { /* fields omitted */ }Methods
impl SFlag
impl SFlagpub fn empty() -> SFlag
pub fn empty() -> SFlagReturns an empty set of flags.
pub fn all() -> SFlag
pub fn all() -> SFlagReturns the set containing all flags.
pub fn bits(&self) -> mode_t
pub fn bits(&self) -> mode_tReturns the raw value of the flags currently stored.
pub fn from_bits(bits: mode_t) -> Option<SFlag>
pub fn from_bits(bits: mode_t) -> Option<SFlag>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: mode_t) -> SFlag
pub fn from_bits_truncate(bits: mode_t) -> SFlagConvert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> boolReturns true if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> boolReturns true if all flags are currently set.
pub fn intersects(&self, other: SFlag) -> bool
pub fn intersects(&self, other: SFlag) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: SFlag) -> bool
pub fn contains(&self, other: SFlag) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: SFlag)
pub fn insert(&mut self, other: SFlag)Inserts the specified flags in-place.
pub fn remove(&mut self, other: SFlag)
pub fn remove(&mut self, other: SFlag)Removes the specified flags in-place.
pub fn toggle(&mut self, other: SFlag)
pub fn toggle(&mut self, other: SFlag)Toggles the specified flags in-place.
Trait Implementations
impl Copy for SFlag
impl Copy for SFlagimpl PartialEq for SFlag
impl PartialEq for SFlagfn eq(&self, other: &SFlag) -> bool
fn eq(&self, other: &SFlag) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &SFlag) -> bool
fn ne(&self, other: &SFlag) -> boolThis method tests for !=.
impl Eq for SFlag
impl Eq for SFlagimpl Clone for SFlag
impl Clone for SFlagfn clone(&self) -> SFlag
fn clone(&self) -> SFlagReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialOrd for SFlag
impl PartialOrd for SFlagfn partial_cmp(&self, other: &SFlag) -> Option<Ordering>
fn partial_cmp(&self, other: &SFlag) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &SFlag) -> bool
fn lt(&self, other: &SFlag) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &SFlag) -> bool
fn le(&self, other: &SFlag) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &SFlag) -> bool
fn gt(&self, other: &SFlag) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &SFlag) -> bool
fn ge(&self, other: &SFlag) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for SFlag
impl Ord for SFlagfn cmp(&self, other: &SFlag) -> Ordering
fn cmp(&self, other: &SFlag) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for SFlag
impl Hash for SFlagfn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for SFlag
impl Debug for SFlagimpl BitOr for SFlag
impl BitOr for SFlagtype Output = SFlag
The resulting type after applying the | operator.
fn bitor(self, other: SFlag) -> SFlag
fn bitor(self, other: SFlag) -> SFlagReturns the union of the two sets of flags.
impl BitXor for SFlag
impl BitXor for SFlagtype Output = SFlag
The resulting type after applying the ^ operator.
fn bitxor(self, other: SFlag) -> SFlag
fn bitxor(self, other: SFlag) -> SFlagReturns the left flags, but with all the right flags toggled.
impl BitAnd for SFlag
impl BitAnd for SFlagtype Output = SFlag
The resulting type after applying the & operator.
fn bitand(self, other: SFlag) -> SFlag
fn bitand(self, other: SFlag) -> SFlagReturns the intersection between the two sets of flags.
impl Sub for SFlag
impl Sub for SFlagtype Output = SFlag
The resulting type after applying the - operator.
fn sub(self, other: SFlag) -> SFlag
fn sub(self, other: SFlag) -> SFlagReturns the set difference of the two sets of flags.
impl Not for SFlag
impl Not for SFlagtype Output = SFlag
The resulting type after applying the ! operator.
fn not(self) -> SFlag
fn not(self) -> SFlagReturns the complement of this set of flags.
impl FromIterator<SFlag> for SFlag
impl FromIterator<SFlag> for SFlagfn from_iter<T: IntoIterator<Item = SFlag>>(iterator: T) -> SFlag
fn from_iter<T: IntoIterator<Item = SFlag>>(iterator: T) -> SFlagCreates a value from an iterator. Read more