Struct docker_api::api::container::models::MemoryStat
source · [−]pub struct MemoryStat {Show 30 fields
pub total_pgmajfault: Option<u64>,
pub cache: Option<u64>,
pub mapped_file: Option<u64>,
pub total_inactive_file: Option<u64>,
pub pgpgout: Option<u64>,
pub rss: Option<u64>,
pub total_mapped_file: Option<u64>,
pub writeback: Option<u64>,
pub unevictable: Option<u64>,
pub pgpgin: Option<u64>,
pub total_unevictable: Option<u64>,
pub pgmajfault: Option<u64>,
pub total_rss: Option<u64>,
pub total_rss_huge: Option<u64>,
pub total_writeback: Option<u64>,
pub total_inactive_anon: Option<u64>,
pub rss_huge: Option<u64>,
pub hierarchical_memory_limit: Option<u64>,
pub hierarchical_memsw_limit: Option<u64>,
pub total_pgfault: Option<u64>,
pub total_active_file: Option<u64>,
pub active_anon: Option<u64>,
pub total_active_anon: Option<u64>,
pub total_pgpgout: Option<u64>,
pub total_cache: Option<u64>,
pub inactive_anon: Option<u64>,
pub active_file: Option<u64>,
pub pgfault: Option<u64>,
pub inactive_file: Option<u64>,
pub total_pgpgin: Option<u64>,
}
Fields
total_pgmajfault: Option<u64>
cache: Option<u64>
mapped_file: Option<u64>
total_inactive_file: Option<u64>
pgpgout: Option<u64>
rss: Option<u64>
total_mapped_file: Option<u64>
writeback: Option<u64>
unevictable: Option<u64>
pgpgin: Option<u64>
total_unevictable: Option<u64>
pgmajfault: Option<u64>
total_rss: Option<u64>
total_rss_huge: Option<u64>
total_writeback: Option<u64>
total_inactive_anon: Option<u64>
rss_huge: Option<u64>
hierarchical_memory_limit: Option<u64>
hierarchical_memsw_limit: Option<u64>
total_pgfault: Option<u64>
total_active_file: Option<u64>
active_anon: Option<u64>
total_active_anon: Option<u64>
total_pgpgout: Option<u64>
total_cache: Option<u64>
inactive_anon: Option<u64>
active_file: Option<u64>
pgfault: Option<u64>
inactive_file: Option<u64>
total_pgpgin: Option<u64>
Trait Implementations
sourceimpl Clone for MemoryStat
impl Clone for MemoryStat
sourcefn clone(&self) -> MemoryStat
fn clone(&self) -> MemoryStat
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MemoryStat
impl Debug for MemoryStat
sourceimpl<'de> Deserialize<'de> for MemoryStat
impl<'de> Deserialize<'de> for MemoryStat
sourcefn 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
sourceimpl Serialize for MemoryStat
impl Serialize for MemoryStat
Auto Trait Implementations
impl RefUnwindSafe for MemoryStat
impl Send for MemoryStat
impl Sync for MemoryStat
impl Unpin for MemoryStat
impl UnwindSafe for MemoryStat
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more