pub struct Info {Show 16 fields
pub Containers: u64,
pub Images: u64,
pub Driver: String,
pub DockerRootDir: String,
pub DriverStatus: Vec<Vec<String>>,
pub ID: String,
pub KernelVersion: String,
pub MemTotal: u64,
pub MemoryLimit: bool,
pub NCPU: u64,
pub NEventsListener: u64,
pub NGoroutines: u64,
pub Name: String,
pub OperatingSystem: String,
pub SwapLimit: bool,
pub SystemTime: Option<String>,
}Fields§
§Containers: u64§Images: u64§Driver: String§DockerRootDir: String§DriverStatus: Vec<Vec<String>>§ID: String§KernelVersion: String§MemTotal: u64§MemoryLimit: bool§NCPU: u64§NEventsListener: u64§NGoroutines: u64§Name: String§OperatingSystem: String§SwapLimit: bool§SystemTime: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Info
impl<'de> Deserialize<'de> for Info
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
Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more