pub trait EwkbRead: Debug + Sized {
// Required method
fn point_type() -> PointType;
// Provided method
fn read_ewkb<R: Read>(raw: &mut R) -> Result<Self, Error> { ... }
}Required Methods§
fn point_type() -> PointType
Provided 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.