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