pub struct MemoryStatsStatsV2 {
Show 31 fields pub anon: u64, pub file: u64, pub kernel_stack: u64, pub slab: u64, pub sock: u64, pub shmem: u64, pub file_mapped: u64, pub file_dirty: u64, pub file_writeback: u64, pub anon_thp: u64, pub inactive_anon: u64, pub active_anon: u64, pub inactive_file: u64, pub active_file: u64, pub unevictable: u64, pub slab_reclaimable: u64, pub slab_unreclaimable: u64, pub pgfault: u64, pub pgmajfault: u64, pub workingset_refault: u64, pub workingset_activate: u64, pub workingset_nodereclaim: u64, pub pgrefill: u64, pub pgscan: u64, pub pgsteal: u64, pub pgactivate: u64, pub pgdeactivate: u64, pub pglazyfree: u64, pub pglazyfreed: u64, pub thp_fault_alloc: u64, pub thp_collapse_alloc: u64,
}
Expand description

Granular memory statistics for the container, v2 cgroups.

Exposed in the docker library here.

Fields§

§anon: u64§file: u64§kernel_stack: u64§slab: u64§sock: u64§shmem: u64§file_mapped: u64§file_dirty: u64§file_writeback: u64§anon_thp: u64§inactive_anon: u64§active_anon: u64§inactive_file: u64§active_file: u64§unevictable: u64§slab_reclaimable: u64§slab_unreclaimable: u64§pgfault: u64§pgmajfault: u64§workingset_refault: u64§workingset_activate: u64§workingset_nodereclaim: u64§pgrefill: u64§pgscan: u64§pgsteal: u64§pgactivate: u64§pgdeactivate: u64§pglazyfree: u64§pglazyfreed: u64§thp_fault_alloc: u64§thp_collapse_alloc: u64

Trait Implementations§

source§

impl Clone for MemoryStatsStatsV2

source§

fn clone(&self) -> MemoryStatsStatsV2

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for MemoryStatsStatsV2

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for MemoryStatsStatsV2

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for MemoryStatsStatsV2

source§

fn eq(&self, other: &MemoryStatsStatsV2) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for MemoryStatsStatsV2

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for MemoryStatsStatsV2

source§

impl StructuralPartialEq for MemoryStatsStatsV2

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

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