[][src]Struct osmpbf::elements::Info

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

Additional metadata that might be included in each element.

Methods

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

pub fn version(&self) -> Option<i32>[src]

Returns the version of this element.

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

Returns the time stamp in milliseconds since the epoch.

pub fn changeset(&self) -> Option<i64>[src]

Returns the changeset id.

pub fn uid(&self) -> Option<i32>[src]

Returns the user id.

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

Returns the user name.

pub fn visible(&self) -> bool[src]

Returns the visibility status of an element. This is only relevant if the PBF file contains historical information.

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Info<'a>

impl<'a> Send for Info<'a>

impl<'a> Sync for Info<'a>

impl<'a> Unpin for Info<'a>

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