Struct dpdk_unix::memory_information::MemoryInformation[][src]

pub struct MemoryInformation(_);

A set of memory statistics.

Super-detailed information (hard to parse, too) is in /proc/zoneinfo. This is broken down into DMA, DMA33 and Normal sub-zones and then by CPU for each Numa Node (aka 'zone'). A sort of detailed version of /proc/vmstat.

Methods

impl MemoryInformation
[src]

Get a statistic.

Free physical RAM in Kilobytes.

Default huge page size.

Used physical RAM in bytes.

Used swap RAM in bytes.

Trait Implementations

impl Debug for MemoryInformation
[src]

Formats the value using the given formatter. Read more

impl Clone for MemoryInformation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Auto Trait Implementations