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