[][src]Struct rs_docker::system::SystemInfo

pub struct SystemInfo {
    pub Containers: u64,
    pub Images: u64,
    pub Driver: String,
    pub DriverStatus: Vec<(String, String)>,
    pub ExecutionDriver: String,
    pub KernelVersion: String,
    pub NCPU: u64,
    pub MemTotal: u64,
    pub Name: String,
    pub ID: String,
    pub Debug: u64,
    pub NFd: u64,
    pub NGoroutines: u64,
    pub NEventsListener: u64,
    pub InitPath: String,
    pub InitSha1: String,
    pub IndexServerAddress: String,
    pub MemoryLimit: u64,
    pub SwapLimit: u64,
    pub IPv4Forwarding: u64,
    pub Labels: Option<Vec<String>>,
    pub DockerRootDir: String,
    pub OperatingSystem: String,
}

Fields

Containers: u64Images: u64Driver: StringDriverStatus: Vec<(String, String)>ExecutionDriver: StringKernelVersion: StringNCPU: u64MemTotal: u64Name: StringID: StringDebug: u64NFd: u64NGoroutines: u64NEventsListener: u64InitPath: StringInitSha1: StringIndexServerAddress: StringMemoryLimit: u64SwapLimit: u64IPv4Forwarding: u64Labels: Option<Vec<String>>DockerRootDir: StringOperatingSystem: String

Trait Implementations

impl Clone for SystemInfo[src]

impl Debug for SystemInfo[src]

impl Serialize for SystemInfo[src]

impl<'de> Deserialize<'de> for SystemInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]