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