pub type Result<T> = Result<T, TbError>;
A specialized Result type for this library’s operations.
Result
pub enum Result<T> { Ok(T), Err(TbError), }
Contains the success value
Contains the error value