Trait FeatureAccess

Source
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.

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.

Implementors§