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