Struct docker::stats::MemoryStat [] [src]

pub struct MemoryStat {
    pub total_pgmajfault: u64,
    pub cache: u64,
    pub mapped_file: u64,
    pub total_inactive_file: u64,
    pub pgpgout: u64,
    pub rss: u64,
    pub total_mapped_file: u64,
    pub writeback: u64,
    pub unevictable: u64,
    pub pgpgin: u64,
    pub total_unevictable: u64,
    pub pgmajfault: u64,
    pub total_rss: u64,
    pub total_rss_huge: u64,
    pub total_writeback: u64,
    pub total_inactive_anon: u64,
    pub rss_huge: u64,
    pub hierarchical_memory_limit: u64,
    pub hierarchical_memsw_limit: u64,
    pub total_pgfault: u64,
    pub total_active_file: u64,
    pub active_anon: u64,
    pub total_active_anon: u64,
    pub total_pgpgout: u64,
    pub total_cache: u64,
    pub inactive_anon: u64,
    pub active_file: u64,
    pub pgfault: u64,
    pub inactive_file: u64,
    pub total_pgpgin: u64,
    pub swap: u64,
    pub total_swap: u64,
}

Fields

total_pgmajfault
cache
mapped_file
total_inactive_file
pgpgout
rss
total_mapped_file
writeback
unevictable
pgpgin
total_unevictable
pgmajfault
total_rss
total_rss_huge
total_writeback
total_inactive_anon
rss_huge
hierarchical_memory_limit
hierarchical_memsw_limit
total_pgfault
total_active_file
active_anon
total_active_anon
total_pgpgout
total_cache
inactive_anon
active_file
pgfault
inactive_file
total_pgpgin
swap
total_swap

Trait Implementations

impl Clone for MemoryStat

fn clone(&self) -> Self

fn clone_from(&mut self, source: &Self)

Derived Implementations

impl Decodable for MemoryStat

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<MemoryStat, __D::Error>

impl Encodable for MemoryStat

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>