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