pub trait FeatureAccess: FeatureProperties + GeozeroGeometry {
    fn process<P>(
        &self,
        processor: &mut P,
        idx: u64
    ) -> Result<(), GeozeroError>
    where
        P: FeatureProcessor
, { ... } }
Expand description

Feature processing API

Provided Methods

Process feature geometries and properties.

Implementors