elicit_geojson 0.11.0

Elicitation shadow crate for the geojson document/value library
Documentation
1
2
3
4
5
6
7
//! Error aliases for the GeoJSON shadow crate.

/// Boxed GeoJSON error type used by helper methods to keep public `Result` sizes small.
pub type GeoJsonError = Box<geojson::Error>;

/// Boxed GeoJSON result type used by helper methods on wrapper types.
pub type GeoJsonResult<T> = Result<T, GeoJsonError>;