1
2
3
4
5
6
7
8
9
10
11
#[derive(RustcEncodable, RustcDecodable)]
#[allow(non_snake_case)]
pub struct Container {
    pub Id: String,
    pub Image: String,
    pub Status: String,
    pub Command: String,
    pub Created: f64,
    pub Names: Vec<String>,
    pub Ports: Vec<String>
}