pub trait GeozeroGeometry {
    fn process_geom<P>(&self, processor: &mut P) -> Result<(), GeozeroError>
    where
        P: GeomProcessor
; fn dims(&self) -> CoordDimensions { ... } fn srid(&self) -> Option<i32> { ... } }
Expand description

Geometry processing trait.

Required Methods

Process geometry.

Provided Methods

Dimensions of geometry

SRID of geometry

Implementations on Foreign Types

Implementors