pub type GGRResult<T> = Result<T, GGRError>;
General result type
enum GGRResult<T> { Ok(T), Err(GGRError), }
Contains the success value
Contains the error value