Trait geozero::FeatureProperties[][src]

pub trait FeatureProperties {
    fn process_properties<P: PropertyProcessor>(
        &self,
        processor: &mut P
    ) -> Result<bool>; fn property<T: PropertyReadType>(&self, name: &str) -> Option<T> { ... }
fn property_n<T: PropertyReadType>(&self, n: usize) -> Option<T> { ... }
fn properties(&self) -> Result<HashMap<String, String>> { ... } }
Expand description

Feature properties processing API

Required methods

Process feature properties.

Provided methods

Get property value by name

Get property value by number

Return all properties in a HashMap Use process_properties for zero-copy access

Implementors