Enum dpdk_unix::VirtualMemoryStatisticName[][src]

pub enum VirtualMemoryStatisticName {
    NumberOFreePages,
    NumberOfBatchAllocatedPages,
    NumberOfInactiveAnonymousPages,
    NumberOfActiveAnonymousPages,
    NumberOfInactiveFilePages,
    NumberOfActiveFilePages,
    NumberOfUnevictablePages,
    NumberOfLockedPages,
    NumberOfAnonymousPages,
    NumberOfMappedPages,
    NumberOfFilePages,
    NumberOfDirtyPages,
    NumberOfWritebackPages,
    NumberOfReclaimableSlabPages,
    NumberOfUnreclaimableSlabPages,
    NumberOfPageTablePages,
    NumberOfKernelStackPages,
    NumberOfUnstablePages,
    NumberOfBouncePages,
    NumberOfVirtualMemoryWritePages,
    NumberOfVirtualMemoryImmediateReclaimPages,
    NumberOfWritebackTemporaryPages,
    NumberOfIsolatedAnonymousPages,
    NumberOfIsolatedFilePages,
    NumberOfShmemPages,
    NumberOfDirtiedPages,
    NumberOfWrittenPages,
    NumberOfAnonymousTransparentHugePages,
    NumberOfFreeCmaPages,
    NumaHit,
    NumaMiss,
    NumaForeign,
    NumaInterleaveHit,
    NumaLocalNode,
    NumaOtherNode,
    Unknown(String),
}

A list of known virtual memory statistics related to NUMA nodes.

There are far more statistics than those listed here.

Variants

Found in /sys/devices/system/node/node<X>/vmstat where <X> is a zero-based NUMA node number.

Found in /sys/devices/system/node/node<X>/vmstat and /sys/devices/system/node/node<X>/numastat where <X> is a zero-based NUMA node number.

This is for all other possibilities.

Trait Implementations

impl Debug for VirtualMemoryStatisticName
[src]

Formats the value using the given formatter. Read more

impl Clone for VirtualMemoryStatisticName
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VirtualMemoryStatisticName
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for VirtualMemoryStatisticName
[src]

impl PartialOrd for VirtualMemoryStatisticName
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for VirtualMemoryStatisticName
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Hash for VirtualMemoryStatisticName
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations