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