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§
Sourcefn process<P>(&self, processor: &mut P, idx: u64) -> Result<(), GeozeroError>where
P: FeatureProcessor,
Self: Sized,
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".