pub enum MountPropagation {
PropagationRPrivate,
PropagationPrivate,
PropagationRShared,
PropagationShared,
PropagationRSlave,
PropagationSlave,
}
Expand description
Propagation represents the propagation of a mount.
Variants§
PropagationRPrivate
PropagationRPrivate RPRIVATE.
PropagationPrivate
PropagationPrivate PRIVATE.
PropagationRShared RSHARED.
PropagationShared SHARED.
PropagationRSlave
PropagationRSlave RSLAVE.
PropagationSlave
PropagationSlave SLAVE.
Trait Implementations§
Source§impl Clone for MountPropagation
impl Clone for MountPropagation
Source§fn clone(&self) -> MountPropagation
fn clone(&self) -> MountPropagation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MountPropagation
impl Debug for MountPropagation
Source§impl<'de> Deserialize<'de> for MountPropagation
impl<'de> Deserialize<'de> for MountPropagation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MountPropagation
impl RefUnwindSafe for MountPropagation
impl Send for MountPropagation
impl Sync for MountPropagation
impl Unpin for MountPropagation
impl UnwindSafe for MountPropagation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more