pub struct MountPoint {
pub destination: Option<String>,
pub driver: Option<String>,
pub mode: Option<String>,
pub name: Option<String>,
pub propagation: Option<String>,
pub rw: Option<bool>,
pub source: Option<String>,
pub type_: Option<String>,
}
Expand description
This is used for reporting the mountpoints in use by a container.
Fields§
§destination: Option<String>
§driver: Option<String>
§mode: Option<String>
§name: Option<String>
§propagation: Option<String>
§rw: Option<bool>
§source: Option<String>
§type_: Option<String>
Trait Implementations§
Source§impl Clone for MountPoint
impl Clone for MountPoint
Source§fn clone(&self) -> MountPoint
fn clone(&self) -> MountPoint
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MountPoint
impl Debug for MountPoint
Source§impl<'de> Deserialize<'de> for MountPoint
impl<'de> Deserialize<'de> for MountPoint
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MountPoint, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MountPoint, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MountPoint
impl PartialEq for MountPoint
Source§impl Serialize for MountPoint
impl Serialize for MountPoint
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for MountPoint
Auto Trait Implementations§
impl Freeze for MountPoint
impl RefUnwindSafe for MountPoint
impl Send for MountPoint
impl Sync for MountPoint
impl Unpin for MountPoint
impl UnwindSafe for MountPoint
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