pub type GentResult<T> = Result<T, GentError>;
Result type alias for GENT operations
pub enum GentResult<T> { Ok(T), Err(GentError), }
Contains the success value
Contains the error value