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

Feature processing API

Provided Methods§

source

fn process<P>(&self, processor: &mut P, idx: u64) -> Result<(), GeozeroError>
where P: FeatureProcessor, Self: Sized,

Process feature geometries and properties.

Object Safety§

This trait is not object safe.

Implementors§