[][src]Struct osmpbf::elements::Relation

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

An OpenStreetMap relation element (See OSM wiki).

A relation contains an ordered list of members that can be of any element type.

Methods

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

pub fn id(&self) -> i64[src]

Returns the relation id.

Important traits for TagIter<'a>
pub fn tags(&self) -> TagIter<'a>[src]

Returns an iterator over the tags of this relation (See OSM wiki). A tag is represented as a pair of strings (key and value).

Example

use osmpbf::*;

let reader = ElementReader::from_path("tests/test.osm.pbf")?;

reader.for_each(|element| {
    if let Element::Relation(relation) = element {
        for (key, value) in relation.tags() {
            println!("key: {}, value: {}", key, value);
        }
    }
})?;

pub fn info(&self) -> Info<'a>[src]

Returns additional metadata for this element.

Important traits for RelMemberIter<'a>
pub fn members(&self) -> RelMemberIter<'a>[src]

Returns an iterator over the members of this relation.

Important traits for RawTagIter<'a>
pub fn raw_tags(&self) -> RawTagIter<'a>[src]

Returns an iterator over the tags of this relation (See OSM wiki). A tag is represented as a pair of indices (key and value) to the stringtable of the current PrimitiveBlock.

pub fn raw_stringtable(&self) -> &[Vec<u8>][src]

Returns the raw stringtable. Elements in a PrimitiveBlock do not store strings themselves; instead, they just store indices to a common stringtable. By convention, the contained strings are UTF-8 encoded but it is not safe to assume that (use std::str::from_utf8).

Trait Implementations

impl<'a> Clone for Relation<'a>[src]

impl<'a> Debug for Relation<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Relation<'a>

impl<'a> Send for Relation<'a>

impl<'a> Sync for Relation<'a>

impl<'a> Unpin for Relation<'a>

impl<'a> UnwindSafe for Relation<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.