Enum dpdk_unix::android_linux::linux_kernel_modules::ModProbeError[]

pub enum ModProbeError {
    InputOutputError(Error),
    SignalTerminatedExitCode(String),
    NonZeroExitCode(i32String),
}

Cause of error when modprobe fails.

Variants

Input / Output error.

Signal-terminated modprobe.

Non-zero exit code.

Trait Implementations

impl Debug for ModProbeError
[src]

Formats the value using the given formatter. Read more

impl Display for ModProbeError

Formats the value using the given formatter. Read more

impl Error for ModProbeError

This method is soft-deprecated. Read more

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

impl From<Error> for ModProbeError

Performs the conversion.

Auto Trait Implementations