pub enum MountType {
TypeBind,
TypeVolume,
TypeTmpfs,
TypeNamedPipe,
}
Variants§
TypeBind
TypeBind is the type for mounting host dir.
TypeVolume
TypeVolume is the type for remote storage volumes.
TypeTmpfs
TypeTmpfs is the type for mounting tmpfs.
TypeNamedPipe
TypeNamedPipe is the type for mounting Windows named pipes.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MountType
impl<'de> Deserialize<'de> for MountType
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 MountType
impl RefUnwindSafe for MountType
impl Send for MountType
impl Sync for MountType
impl Unpin for MountType
impl UnwindSafe for MountType
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