Struct docker::container::Container [] [src]

pub struct Container {
    pub Id: String,
    pub Image: String,
    pub Status: String,
    pub Command: String,
    pub Created: u64,
    pub Names: Vec<String>,
    pub Ports: Vec<Port>,
    pub SizeRw: Option<u64>,
    pub SizeRootFs: u64,
    pub Labels: Option<HashMap<String, String>>,
    pub HostConfig: HostConfig,
}

Fields

Id
Image
Status
Command
Created
Names
Ports
SizeRw
SizeRootFs
Labels
HostConfig

Trait Implementations

impl Clone for Container

fn clone(&self) -> Self

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

impl Display for Container

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

Derived Implementations

impl Decodable for Container

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

impl Encodable for Container

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