pub enum MountType {
Volume,
Bind,
Tmpfs,
NamedPipe,
Image,
Cluster,
Other(String),
}Expand description
A long-syntax service-volume mount type.
Variants§
Volume
A named or anonymous container volume.
Bind
A host bind mount.
Tmpfs
An in-memory temporary filesystem.
NamedPipe
A Windows named pipe.
Image
An image-backed mount.
Cluster
A cluster-managed mount.
Other(String)
A value not recognized by this ComposeLens release.
Trait Implementations§
impl Eq for MountType
impl StructuralPartialEq for MountType
Auto Trait Implementations§
impl Freeze for MountType
impl RefUnwindSafe for MountType
impl Send for MountType
impl Sync for MountType
impl Unpin for MountType
impl UnsafeUnpin 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