Struct docker::container::ContainerInfo [] [src]

pub struct ContainerInfo {
    pub AppArmorProfile: String,
    pub Args: Vec<String>,
    pub Created: String,
    pub Driver: String,
    pub ExecDriver: String,
    pub HostnamePath: String,
    pub HostsPath: String,
    pub LogPath: String,
    pub Id: String,
    pub Image: String,
    pub MountLabel: String,
    pub Name: String,
    pub Path: String,
    pub ProcessLabel: String,
    pub ResolvConfPath: String,
    pub RestartCount: u64,
    pub Volumes: HashMap<String, String>,
    pub VolumesRW: HashMap<String, bool>,
}

Fields

AppArmorProfile
Args
Created
Driver
ExecDriver
HostnamePath
HostsPath
LogPath
Id
Image
MountLabel
Name
Path
ProcessLabel
ResolvConfPath
RestartCount
Volumes
VolumesRW

Trait Implementations

impl Clone for ContainerInfo

fn clone(&self) -> Self

fn clone_from(&mut self, source: &Self)

impl Display for ContainerInfo

fn fmt(&self, f: &mut Formatter) -> Result<(), Error>

Derived Implementations

impl Decodable for ContainerInfo

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<ContainerInfo, __D::Error>

impl Encodable for ContainerInfo

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>