pub type KResult<O = ()> = Result<O, Kind>;
A typedef for the result from a kernel method.
pub enum KResult<O = ()> { Ok(O), Err(Kind), }
Contains the success value
Contains the error value