[][src]Struct vadeen_osm::Way

pub struct Way {
    pub id: i64,
    pub refs: Vec<i64>,
    pub meta: Meta,
}

Group of nodes and meta data. See OSM docs for Way.

Fields

id: i64refs: Vec<i64>meta: Meta

Trait Implementations

impl Clone for Way[src]

impl Debug for Way[src]

impl Default for Way[src]

impl Eq for Way[src]

impl PartialEq<Way> for Way[src]

impl StructuralEq for Way[src]

impl StructuralPartialEq for Way[src]

Auto Trait Implementations

impl RefUnwindSafe for Way

impl Send for Way

impl Sync for Way

impl Unpin for Way

impl UnwindSafe for Way

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.