pub struct Container {Show 15 fields
pub Id: String,
pub Image: String,
pub ImageID: String,
pub State: String,
pub Status: String,
pub Command: String,
pub Created: u64,
pub Names: Vec<String>,
pub Ports: Vec<Port>,
pub SizeRw: Option<u64>,
pub SizeRootFs: Option<u64>,
pub Labels: Option<HashMap<String, String>>,
pub HostConfig: HostConfig,
pub NetworkSettings: Option<SummaryNetworkSettings>,
pub Mounts: Option<Vec<Mount>>,
}Fields§
§Id: String§Image: String§ImageID: String§State: String§Status: String§Command: String§Created: u64§Names: Vec<String>§Ports: Vec<Port>§SizeRw: Option<u64>§SizeRootFs: Option<u64>§Labels: Option<HashMap<String, String>>§HostConfig: HostConfig§NetworkSettings: Option<SummaryNetworkSettings>§Mounts: Option<Vec<Mount>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Container
impl<'de> Deserialize<'de> for Container
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
impl Eq for Container
impl StructuralPartialEq for Container
Auto Trait Implementations§
impl Freeze for Container
impl RefUnwindSafe for Container
impl Send for Container
impl Sync for Container
impl Unpin for Container
impl UnwindSafe for Container
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more