Expand description
Error and result types for rfham-geo.
GeoError is the single error enum used across all modules in this crate.
GeoResult<T> is a type alias for std::result::Result<T, GeoError>.
Enums§
- GeoError
- The
Errortype for this crate.
Type Aliases§
- GeoResult
- A
Resulttype that specifically uses this crate’sError.