Trait geozero::FeatureProcessor[][src]

pub trait FeatureProcessor: GeomProcessor + PropertyProcessor {
    fn dataset_begin(&mut self, name: Option<&str>) -> Result<()> { ... }
fn dataset_end(&mut self) -> Result<()> { ... }
fn feature_begin(&mut self, idx: u64) -> Result<()> { ... }
fn feature_end(&mut self, idx: u64) -> Result<()> { ... }
fn properties_begin(&mut self) -> Result<()> { ... }
fn properties_end(&mut self) -> Result<()> { ... }
fn geometry_begin(&mut self) -> Result<()> { ... }
fn geometry_end(&mut self) -> Result<()> { ... } }
Expand description

Feature processing trait

Provided methods

Begin of dataset processing

End of dataset processing

Begin of feature processing

End of feature processing

Begin of feature property processing

End of feature property processing

Begin of feature geometry processing

End of feature geometry processing

Implementors