Enum dpdk_unix::memory_information::MemoryInformationParseError[]

pub enum MemoryInformationParseError {
    CouldNotOpenFile(Error),
    CouldNotParseMemoryInformationValue(usizeMemoryInformationName),
    CouldNotParseMemoryInformationValueAsU64(usizeMemoryInformationNameStringParseIntError),
    DuplicateMemoryInformation(usizeMemoryInformationNameu64),
}

Errors possible when parsing memory statistics.

Variants

Could not open a file of memory statistics.

Could not parse a memory statistic.

Could not parse a memory statistic as a u64 value.

Could not parse a memory statistic because it was a duplicate.

Trait Implementations

impl Debug for MemoryInformationParseError
[src]

Formats the value using the given formatter. Read more

impl Display for MemoryInformationParseError

Formats the value using the given formatter. Read more

impl Error for MemoryInformationParseError

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for MemoryInformationParseError

Performs the conversion.

Auto Trait Implementations