Struct passivized_docker_engine_client::responses::Mount
source · pub struct Mount {
pub target: Option<String>,
pub source: String,
pub mount_type: String,
pub read_only: bool,
pub consistency: String,
pub bind_options: Option<BindOptions>,
pub volume_options: Option<VolumeOptions>,
pub tmpfs_options: Option<TmpfsOptions>,
}Expand description
See https://docs.docker.com/engine/api/v1.41/#tag/Container/operation/ContainerList
Fields§
§target: Option<String>§source: String§mount_type: String§read_only: bool§consistency: String§bind_options: Option<BindOptions>§volume_options: Option<VolumeOptions>§tmpfs_options: Option<TmpfsOptions>Trait Implementations§
source§impl<'de> Deserialize<'de> for Mount
impl<'de> Deserialize<'de> for Mount
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