Struct transit_model::objects::Route[][src]

pub struct Route {
    pub id: String,
    pub name: String,
    pub direction_type: Option<String>,
    pub codes: KeysValues,
    pub object_properties: KeysValues,
    pub comment_links: CommentLinksT,
    pub line_id: String,
    pub geometry_id: Option<String>,
    pub destination_id: Option<String>,
}

Fields

id: Stringname: Stringdirection_type: Option<String>codes: KeysValuesobject_properties: KeysValuescomment_links: CommentLinksTline_id: Stringgeometry_id: Option<String>destination_id: Option<String>

Trait Implementations

impl AddPrefix for Route[src]

impl Clone for Route[src]

impl Codes for Route[src]

impl Debug for Route[src]

impl Default for Route[src]

impl<'de> Deserialize<'de> for Route[src]

impl GetCorresponding<Route> for IdxSet<Transfer>[src]

impl GetCorresponding<Route> for IdxSet<Calendar>[src]

impl GetCorresponding<Route> for IdxSet<Network>[src]

impl GetCorresponding<Route> for IdxSet<PhysicalMode>[src]

impl GetCorresponding<Route> for IdxSet<CommercialMode>[src]

impl GetCorresponding<Route> for IdxSet<StopArea>[src]

impl GetCorresponding<Route> for IdxSet<Company>[src]

impl GetCorresponding<Route> for IdxSet<VehicleJourney>[src]

impl GetCorresponding<Route> for IdxSet<StopPoint>[src]

impl GetCorresponding<Route> for IdxSet<Line>[src]

impl GetCorresponding<Route> for IdxSet<Contributor>[src]

impl GetCorresponding<Route> for IdxSet<Route>[src]

impl GetCorresponding<Route> for IdxSet<Dataset>[src]

impl GetObjectType for Route[src]

impl Id<Line> for Route[src]

impl Id<Route> for Route[src]

impl Id<Route> for VehicleJourney[src]

impl PartialEq<Route> for Route[src]

impl Properties for Route[src]

impl Serialize for Route[src]

impl StructuralPartialEq for Route[src]

impl WithId for Route[src]

Auto Trait Implementations

impl RefUnwindSafe for Route

impl Send for Route

impl Sync for Route

impl Unpin for Route

impl UnwindSafe for Route

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,