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