Struct gdal::vector::Feature [] [src]

pub struct Feature<'a> { /* fields omitted */ }

OGR Feature

Methods

impl<'a> Feature<'a>
[src]

Get the value of a named field. If the field exists, it returns a FieldValue wrapper, that you need to unpack to a base type (string, float, etc). If the field is missing, returns None.

Get the field's geometry.

Trait Implementations

impl<'a> Drop for Feature<'a>
[src]

A method called when the value goes out of scope. Read more