[][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]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SystemInfo[src]

impl Serialize for SystemInfo[src]

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

Auto Trait Implementations

impl Send for SystemInfo

impl Sync for SystemInfo

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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