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