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