pub type KmResult<T> = Result<T, KmError>;
result type for kernel operations
pub enum KmResult<T> { Ok(T), Err(KmError), }
Contains the success value
Contains the error value