[][src]Struct osmpbf::dense::DenseNode

pub struct DenseNode<'a> {
    pub id: i64,
    pub version: i32,
    pub changeset: i64,
    pub uid: i32,
    // some fields omitted
}

An OpenStreetMap node element from a compressed array of dense nodes (See OSM wiki).

Fields

id: i64

The node id. It should be unique between nodes and might be negative to indicate that the element has not yet been uploaded to a server.

version: i32

The version of this element.

changeset: i64

The changeset id.

uid: i32

The user id.

Methods

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

pub fn user(&self) -> Result<&'a str>[src]

Returns the user name.

pub fn lat(&self) -> f64[src]

Returns the latitude coordinate in degrees.

pub fn lon(&self) -> f64[src]

Returns the longitude coordinate in degrees.

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

Returns the time stamp in milliseconds since the epoch.

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

Returns an iterator over the tags of this node (See OSM wiki).

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

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

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for DenseNode<'a>

impl<'a> Send for DenseNode<'a>

impl<'a> Sync for DenseNode<'a>

impl<'a> Unpin for DenseNode<'a>

impl<'a> UnwindSafe for DenseNode<'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.