#[repr(i32)]pub enum MeminfoCounters {
Show 39 variants
MeminfoUnspecified = 0,
MeminfoMemTotal = 1,
MeminfoMemFree = 2,
MeminfoMemAvailable = 3,
MeminfoBuffers = 4,
MeminfoCached = 5,
MeminfoSwapCached = 6,
MeminfoActive = 7,
MeminfoInactive = 8,
MeminfoActiveAnon = 9,
MeminfoInactiveAnon = 10,
MeminfoActiveFile = 11,
MeminfoInactiveFile = 12,
MeminfoUnevictable = 13,
MeminfoMlocked = 14,
MeminfoSwapTotal = 15,
MeminfoSwapFree = 16,
MeminfoDirty = 17,
MeminfoWriteback = 18,
MeminfoAnonPages = 19,
MeminfoMapped = 20,
MeminfoShmem = 21,
MeminfoSlab = 22,
MeminfoSlabReclaimable = 23,
MeminfoSlabUnreclaimable = 24,
MeminfoKernelStack = 25,
MeminfoPageTables = 26,
MeminfoCommitLimit = 27,
MeminfoCommitedAs = 28,
MeminfoVmallocTotal = 29,
MeminfoVmallocUsed = 30,
MeminfoVmallocChunk = 31,
MeminfoCmaTotal = 32,
MeminfoCmaFree = 33,
MeminfoGpu = 34,
MeminfoZram = 35,
MeminfoMisc = 36,
MeminfoIonHeap = 37,
MeminfoIonHeapPool = 38,
}
Expand description
Counter definitions for Linux’s /proc/meminfo.
Variants§
MeminfoUnspecified = 0
MeminfoMemTotal = 1
MeminfoMemFree = 2
MeminfoMemAvailable = 3
MeminfoBuffers = 4
MeminfoCached = 5
MeminfoSwapCached = 6
MeminfoActive = 7
MeminfoInactive = 8
MeminfoActiveAnon = 9
MeminfoInactiveAnon = 10
MeminfoActiveFile = 11
MeminfoInactiveFile = 12
MeminfoUnevictable = 13
MeminfoMlocked = 14
MeminfoSwapTotal = 15
MeminfoSwapFree = 16
MeminfoDirty = 17
MeminfoWriteback = 18
MeminfoAnonPages = 19
MeminfoMapped = 20
MeminfoShmem = 21
MeminfoSlab = 22
MeminfoSlabReclaimable = 23
MeminfoSlabUnreclaimable = 24
MeminfoKernelStack = 25
MeminfoPageTables = 26
MeminfoCommitLimit = 27
MeminfoCommitedAs = 28
MeminfoVmallocTotal = 29
MeminfoVmallocUsed = 30
MeminfoVmallocChunk = 31
MeminfoCmaTotal = 32
MeminfoCmaFree = 33
MeminfoGpu = 34
MeminfoZram = 35
MeminfoMisc = 36
MeminfoIonHeap = 37
MeminfoIonHeapPool = 38
Implementations§
Source§impl MeminfoCounters
impl MeminfoCounters
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
Source§impl Clone for MeminfoCounters
impl Clone for MeminfoCounters
Source§fn clone(&self) -> MeminfoCounters
fn clone(&self) -> MeminfoCounters
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MeminfoCounters
impl Debug for MeminfoCounters
Source§impl Default for MeminfoCounters
impl Default for MeminfoCounters
Source§fn default() -> MeminfoCounters
fn default() -> MeminfoCounters
Returns the “default value” for a type. Read more
Source§impl From<MeminfoCounters> for i32
impl From<MeminfoCounters> for i32
Source§fn from(value: MeminfoCounters) -> i32
fn from(value: MeminfoCounters) -> i32
Converts to this type from the input type.
Source§impl Hash for MeminfoCounters
impl Hash for MeminfoCounters
Source§impl Ord for MeminfoCounters
impl Ord for MeminfoCounters
Source§fn cmp(&self, other: &MeminfoCounters) -> Ordering
fn cmp(&self, other: &MeminfoCounters) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MeminfoCounters
impl PartialEq for MeminfoCounters
Source§impl PartialOrd for MeminfoCounters
impl PartialOrd for MeminfoCounters
Source§impl TryFrom<i32> for MeminfoCounters
impl TryFrom<i32> for MeminfoCounters
Source§type Error = DecodeError
type Error = DecodeError
The type returned in the event of a conversion error.
Source§fn try_from(value: i32) -> Result<MeminfoCounters, DecodeError>
fn try_from(value: i32) -> Result<MeminfoCounters, DecodeError>
Performs the conversion.
impl Copy for MeminfoCounters
impl Eq for MeminfoCounters
impl StructuralPartialEq for MeminfoCounters
Auto Trait Implementations§
impl Freeze for MeminfoCounters
impl RefUnwindSafe for MeminfoCounters
impl Send for MeminfoCounters
impl Sync for MeminfoCounters
impl Unpin for MeminfoCounters
impl UnwindSafe for MeminfoCounters
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more