pub trait TryInto<T> {
    type Err;

    fn try_into(self) -> Result<T, Self::Err>;
}
Expand description

This trait provides fallible conversions from GeoJSON values to Geo types

Required Associated Types

Required Methods

Implementors