Struct podman_api_stubs::models::InspectMount [−][src]
pub struct InspectMount {
pub destination: Option<String>,
pub driver: Option<String>,
pub mode: Option<String>,
pub name: Option<String>,
pub options: Option<Vec<String>>,
pub propagation: Option<String>,
pub RW: Option<bool>,
pub source: Option<String>,
pub _type: Option<String>,
}
Expand description
InspectMount provides a record of a single mount in a container. It contains fields for both named and normal volumes. Only user-specified volumes will be included, and tmpfs volumes are not included even if the user specified them.
Fields
destination: Option<String>
driver: Option<String>
mode: Option<String>
name: Option<String>
options: Option<Vec<String>>
propagation: Option<String>
RW: Option<bool>
source: Option<String>
_type: Option<String>
Implementations
Trait Implementations
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for InspectMount
impl Send for InspectMount
impl Sync for InspectMount
impl Unpin for InspectMount
impl UnwindSafe for InspectMount
Blanket Implementations
Mutably borrows from an owned value. Read more