pub type Result<T> = Result<T, KernelError>;
pub enum Result<T> { Ok(T), Err(KernelError), }
Contains the success value
Contains the error value