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