Struct sys_mount::UnmountFlags [−]
pub struct UnmountFlags { /* fields omitted */ }Flags which may be specified when unmounting a file system.
Methods
impl UnmountFlags
impl UnmountFlagspub const FORCE: UnmountFlags
FORCE: UnmountFlags = UnmountFlags{bits: MNT_FORCE,}
Force unmount even if busy. This can cause data loss. (Only for NFS mounts.)
pub const DETACH: UnmountFlags
DETACH: UnmountFlags = UnmountFlags{bits: MNT_DETACH,}
Perform a lazy unmount: make the mount point unavailable for new accesses, and actually perform the unmount when the mount point ceases to be busy.
pub const EXPIRE: UnmountFlags
EXPIRE: UnmountFlags = UnmountFlags{bits: MNT_EXPIRE,}
Mark the mount point as expired. If a mount point is not currently in use, then an initial call to umount2() with this flag fails with the error EAGAIN, but marks the mount point as expired. The mount point remains expired as long as it isn't accessed by any process. A second umount2() call specifying MNT_EXPIRE unmounts an expired mount point. This flag cannot be specified with either MNT_FORCE or MNT_DETACH.
pub const NOFOLLOW: UnmountFlags
NOFOLLOW: UnmountFlags = UnmountFlags{bits: O_NOFOLLOW,}
Don't dereference target if it is a symbolic link. This flag allows security problems to be avoided in set-user-ID-root programs that allow unprivileged users to unmount file systems.
pub fn empty() -> UnmountFlags
pub fn empty() -> UnmountFlagsReturns an empty set of flags.
pub fn all() -> UnmountFlags
pub fn all() -> UnmountFlagsReturns the set containing all flags.
pub fn bits(&self) -> i32
pub fn bits(&self) -> i32Returns the raw value of the flags currently stored.
pub fn from_bits(bits: i32) -> Option<UnmountFlags>
pub fn from_bits(bits: i32) -> Option<UnmountFlags>Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: i32) -> UnmountFlags
pub fn from_bits_truncate(bits: i32) -> UnmountFlagsConvert 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: UnmountFlags) -> bool
pub fn intersects(&self, other: UnmountFlags) -> boolReturns true if there are flags common to both self and other.
pub fn contains(&self, other: UnmountFlags) -> bool
pub fn contains(&self, other: UnmountFlags) -> boolReturns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: UnmountFlags)
pub fn insert(&mut self, other: UnmountFlags)Inserts the specified flags in-place.
pub fn remove(&mut self, other: UnmountFlags)
pub fn remove(&mut self, other: UnmountFlags)Removes the specified flags in-place.
pub fn toggle(&mut self, other: UnmountFlags)
pub fn toggle(&mut self, other: UnmountFlags)Toggles the specified flags in-place.
pub fn set(&mut self, other: UnmountFlags, value: bool)
pub fn set(&mut self, other: UnmountFlags, value: bool)Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Copy for UnmountFlags
impl Copy for UnmountFlagsimpl PartialEq for UnmountFlags
impl PartialEq for UnmountFlagsfn eq(&self, other: &UnmountFlags) -> bool
fn eq(&self, other: &UnmountFlags) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &UnmountFlags) -> bool
fn ne(&self, other: &UnmountFlags) -> boolThis method tests for !=.
impl Eq for UnmountFlags
impl Eq for UnmountFlagsimpl Clone for UnmountFlags
impl Clone for UnmountFlagsfn clone(&self) -> UnmountFlags
fn clone(&self) -> UnmountFlagsReturns 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 UnmountFlags
impl PartialOrd for UnmountFlagsfn partial_cmp(&self, other: &UnmountFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &UnmountFlags) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &UnmountFlags) -> bool
fn lt(&self, other: &UnmountFlags) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &UnmountFlags) -> bool
fn le(&self, other: &UnmountFlags) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &UnmountFlags) -> bool
fn gt(&self, other: &UnmountFlags) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &UnmountFlags) -> bool
fn ge(&self, other: &UnmountFlags) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for UnmountFlags
impl Ord for UnmountFlagsfn cmp(&self, other: &UnmountFlags) -> Ordering
fn cmp(&self, other: &UnmountFlags) -> 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 UnmountFlags
impl Hash for UnmountFlagsfn 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 UnmountFlags
impl Debug for UnmountFlagsimpl Binary for UnmountFlags
impl Binary for UnmountFlagsimpl Octal for UnmountFlags
impl Octal for UnmountFlagsimpl LowerHex for UnmountFlags
impl LowerHex for UnmountFlagsimpl UpperHex for UnmountFlags
impl UpperHex for UnmountFlagsimpl BitOr for UnmountFlags
impl BitOr for UnmountFlagstype Output = UnmountFlags
The resulting type after applying the | operator.
fn bitor(self, other: UnmountFlags) -> UnmountFlags
fn bitor(self, other: UnmountFlags) -> UnmountFlagsReturns the union of the two sets of flags.
impl BitOrAssign for UnmountFlags
impl BitOrAssign for UnmountFlagsfn bitor_assign(&mut self, other: UnmountFlags)
fn bitor_assign(&mut self, other: UnmountFlags)Adds the set of flags.
impl BitXor for UnmountFlags
impl BitXor for UnmountFlagstype Output = UnmountFlags
The resulting type after applying the ^ operator.
fn bitxor(self, other: UnmountFlags) -> UnmountFlags
fn bitxor(self, other: UnmountFlags) -> UnmountFlagsReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for UnmountFlags
impl BitXorAssign for UnmountFlagsfn bitxor_assign(&mut self, other: UnmountFlags)
fn bitxor_assign(&mut self, other: UnmountFlags)Toggles the set of flags.
impl BitAnd for UnmountFlags
impl BitAnd for UnmountFlagstype Output = UnmountFlags
The resulting type after applying the & operator.
fn bitand(self, other: UnmountFlags) -> UnmountFlags
fn bitand(self, other: UnmountFlags) -> UnmountFlagsReturns the intersection between the two sets of flags.
impl BitAndAssign for UnmountFlags
impl BitAndAssign for UnmountFlagsfn bitand_assign(&mut self, other: UnmountFlags)
fn bitand_assign(&mut self, other: UnmountFlags)Disables all flags disabled in the set.
impl Sub for UnmountFlags
impl Sub for UnmountFlagstype Output = UnmountFlags
The resulting type after applying the - operator.
fn sub(self, other: UnmountFlags) -> UnmountFlags
fn sub(self, other: UnmountFlags) -> UnmountFlagsReturns the set difference of the two sets of flags.
impl SubAssign for UnmountFlags
impl SubAssign for UnmountFlagsfn sub_assign(&mut self, other: UnmountFlags)
fn sub_assign(&mut self, other: UnmountFlags)Disables all flags enabled in the set.
impl Not for UnmountFlags
impl Not for UnmountFlagstype Output = UnmountFlags
The resulting type after applying the ! operator.
fn not(self) -> UnmountFlags
fn not(self) -> UnmountFlagsReturns the complement of this set of flags.
impl Extend<UnmountFlags> for UnmountFlags
impl Extend<UnmountFlags> for UnmountFlagsfn extend<T: IntoIterator<Item = UnmountFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = UnmountFlags>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<UnmountFlags> for UnmountFlags
impl FromIterator<UnmountFlags> for UnmountFlagsfn from_iter<T: IntoIterator<Item = UnmountFlags>>(iterator: T) -> UnmountFlags
fn from_iter<T: IntoIterator<Item = UnmountFlags>>(iterator: T) -> UnmountFlagsCreates a value from an iterator. Read more
Auto Trait Implementations
impl Send for UnmountFlags
impl Send for UnmountFlagsimpl Sync for UnmountFlags
impl Sync for UnmountFlags