pub type Result<T> = Result<T, KernelError>;Expand description
Convenient Result alias used throughout the kernel.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(KernelError),
}pub type Result<T> = Result<T, KernelError>;Convenient Result alias used throughout the kernel.
pub enum Result<T> {
Ok(T),
Err(KernelError),
}