Struct podman_api::models::MountPoint
source · 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 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<'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<MountPoint> for MountPoint
impl PartialEq<MountPoint> for MountPoint
source§fn eq(&self, other: &MountPoint) -> bool
fn eq(&self, other: &MountPoint) -> bool
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