pub type GeoResult<T> = Result<T, GeoError>;
A Result type that specifically uses this crate’s Error.
Result
Error
pub enum GeoResult<T> { Ok(T), Err(GeoError), }
Contains the success value
Contains the error value