pub enum LinuxKernelModulesListParseError {
CouldNotOpenFile(Error),
CouldNotParseEmptyModuleName {
zero_based_line_number: usize,
},
DuplicateModuleName {
zero_based_line_number: usize,
linux_kernel_module_name: Box<[u8]>,
},
}Cause of error when trying to parse list of Linux linux_kernel_modules.
Could not open file list of Linux kernel linux_kernel_modules.
Fields of CouldNotParseEmptyModuleName
Zero-based line number in the file the error occurred at.
A module name was duplicated.
Fields of DuplicateModuleName
Zero-based line number in the file the error occurred at.
The Linux kernel module name (not necessarily UTF-8).
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
The lower-level cause of this error, if any. Read more
Converts the given value to a String. Read more
🔬 This is a nightly-only experimental API. (try_from)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from)
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (try_from)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from)
🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static