Type Alias linux_loader::configurator::Result
source · pub type Result<T> = Result<T, Error>;Available on crate features
elf or pe or bzimage only.Expand description
Specialized Result type for the boot configurator.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}