pub struct MountPoint {
pub mount_type: String,
pub name: Option<String>,
pub source: String,
pub destination: String,
pub driver: Option<String>,
pub mode: String,
pub rw: bool,
pub propagation: String,
}Expand description
See https://docs.docker.com/engine/api/v1.41/#tag/Container/operation/ContainerInspect
Fields§
§mount_type: String§name: Option<String>§source: String§destination: String§driver: Option<String>§mode: String§rw: bool§propagation: StringTrait Implementations§
source§impl Clone for MountPoint
impl Clone for MountPoint
source§fn clone(&self) -> MountPoint
fn clone(&self) -> MountPoint
Returns a copy 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 MountPoint
impl Debug for MountPoint
source§impl Default for MountPoint
impl Default for MountPoint
source§fn default() -> MountPoint
fn default() -> MountPoint
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for MountPoint
impl<'de> Deserialize<'de> for MountPoint
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