pub trait CanGetGeoJsonFeaturesFromSource {
// Required method
fn get_geojson_features_from_source() -> FeatureCollection;
}Expand description
Trait that supports getting the GeoJSON features from a source.
Required Methods§
Sourcefn get_geojson_features_from_source() -> FeatureCollection
fn get_geojson_features_from_source() -> FeatureCollection
Get the GeoJSON features from a source.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl CanGetGeoJsonFeaturesFromSource for OsmAdmin
Available on non-
target_family=wasm only.