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