pub type TeraResult<T> = Result<T, Error>;
A custom Result type for this library
pub enum TeraResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value