Enum dpdk_unix::memory_information::MemoryInformationName[][src]

pub enum MemoryInformationName {
    TotalPhysicalRam,
    FreePhysicalRam,
    AvailablePhysicalRam,
    UsedAsFileBuffersPhysicalRam,
    UsedAsCachePhysicalRam,
    TotalSwap,
    FreeSwap,
    UsedAsCacheSwap,
    ActiveFileBufferAndCacheInUse,
    InactiveFileBufferAndCacheAvailable,
    AnonymousActive,
    AnonymousInactive,
    FileActive,
    FileInactive,
    Unevictable,
    WaitingToBeWrittenBackToDisks,
    CurrentlyBeingWrittenBackToDisks,
    UsedForBlockDeviceBounceBuffers,
    NetworkFileSystemUnstablePagesSentToServerButNotYetCommittedToStableStorage,
    MemoryUsedByFuseForTemporaryWritebackBuffers,
    AnonymousMemoryMappedUsingMmap,
    FilesMappedUsingMmap,
    Shmem,
    LockedByMlock,
    Slab,
    SlabReclaimable,
    SlabUnreclaimable,
    KernelStack,
    MemoryDedicatedToLowestPageTableLevel,
    CommitLimit,
    WorstCaseScenarioMemoryRequiredToCompleteWorkloadIncludingSwapMemory,
    TotalVirtualAddressSpaceEgByMalloc,
    UsedVirtualAddressSpaceEgByMalloc,
    LargestContiguousChunkInVirtualAddressSpaceEgByMalloc,
    TotalNumberOfHugePages,
    FreeNumberOfHugePages,
    ReservedNumberOfHugePages,
    SurplusNumberOfHugePages,
    SizeOfAHugePage,
    TransparentHugePagesMemoryUsage,
    DirectMap4k,
    DirectMap2M,
    HardwareCorrupted,
    TotalHighNotDirectlyMappedIntoKernelSpace,
    FreeHighNotDirectlyMappedIntoKernelSpace,
    TotalLowDirectlyMappedIntoKernelSpace,
    FreeLowDirectlyMappedIntoKernelSpace,
    ShmemHugePageUsage,
    ShmemMemoryMappedIntoUserSpaceUsingHugePages,
    Unknown(String),
}

Memory information names for a process.

Some old help here: https://www.centos.org/docs/5/html/5.1/Deployment_Guide/s2-proc-meminfo.html.

Variants

An estimate of physical ram available for starting new applications. Always larger than FreePhysicalRam; see https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=34e431b0ae398fc54ea69ff85ec700722c9da773.

aka 'Dirty'.

aka 'Writeback'.

The number is derived by dividing SizeOfAHugePage by the megabytes set aside for hugepages specified in /proc/sys/vm/hugetlb_pool.

Not mapped using tlbfs.

Methods

impl MemoryInformationName
[src]

Deprecated or not understood memory statistic names.

Associated memory statistic unit.

Trait Implementations

impl Debug for MemoryInformationName
[src]

Formats the value using the given formatter. Read more

impl Clone for MemoryInformationName
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MemoryInformationName
[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 MemoryInformationName
[src]

impl PartialOrd for MemoryInformationName
[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 MemoryInformationName
[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 MemoryInformationName
[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