pub trait GeoType: From<Expr<Self::Target>> {
type Target: ConvertFrom<AnyExpr>;
// Required method
fn get_type() -> Type;
}
Expand description
Helper trait for Geo-AID type representations.
Required Associated Types§
Sourcetype Target: ConvertFrom<AnyExpr>
type Target: ConvertFrom<AnyExpr>
The target Geo-AID type this type can be converted to.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.