Enum dpdk_unix::android_linux::linux_kernel_modules::LinuxKernelModulesListParseError[]

pub enum LinuxKernelModulesListParseError {
    CouldNotOpenFile(Error),
    CouldNotParseEmptyModuleName(usize),
    DuplicateModuleName(usizeString),
}

Cause of error when trying to parse list of Linux linux_kernel_modules.

Variants

Could not open file list of Linux kernel linux_kernel_modules.

A module name was empty.

A module name was duplicated.

Trait Implementations

impl Debug for LinuxKernelModulesListParseError
[src]

Formats the value using the given formatter. Read more

impl Display for LinuxKernelModulesListParseError

Formats the value using the given formatter. Read more

impl Error for LinuxKernelModulesListParseError

This method is soft-deprecated. Read more

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

impl From<Error> for LinuxKernelModulesListParseError

Performs the conversion.

Auto Trait Implementations