pub type Result<T> = Result<T, TlgError>;
The result type for TLG operations.
pub enum Result<T> { Ok(T), Err(TlgError), }
Contains the success value
Contains the error value