Struct transit_model::objects::VehicleJourney[][src]

pub struct VehicleJourney {
    pub id: String,
    pub codes: KeysValues,
    pub object_properties: KeysValues,
    pub comment_links: CommentLinksT,
    pub route_id: String,
    pub physical_mode_id: String,
    pub dataset_id: String,
    pub service_id: String,
    pub headsign: Option<String>,
    pub short_name: Option<String>,
    pub block_id: Option<String>,
    pub company_id: String,
    pub trip_property_id: Option<String>,
    pub geometry_id: Option<String>,
    pub stop_times: Vec<StopTime>,
    pub journey_pattern_id: Option<String>,
}

Fields

id: Stringcodes: KeysValuesobject_properties: KeysValuescomment_links: CommentLinksTroute_id: Stringphysical_mode_id: Stringdataset_id: Stringservice_id: Stringheadsign: Option<String>short_name: Option<String>block_id: Option<String>company_id: Stringtrip_property_id: Option<String>geometry_id: Option<String>stop_times: Vec<StopTime>journey_pattern_id: Option<String>

Trait Implementations

impl AddPrefix for VehicleJourney[src]

impl Clone for VehicleJourney[src]

impl Codes for VehicleJourney[src]

impl Debug for VehicleJourney[src]

impl Default for VehicleJourney[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

impl GetObjectType for VehicleJourney[src]

impl Id<Calendar> for VehicleJourney[src]

impl Id<Company> for VehicleJourney[src]

impl Id<Dataset> for VehicleJourney[src]

impl Id<PhysicalMode> for VehicleJourney[src]

impl Id<Route> for VehicleJourney[src]

impl Id<VehicleJourney> for VehicleJourney[src]

impl PartialEq<VehicleJourney> for VehicleJourney[src]

impl Properties for VehicleJourney[src]

impl Serialize for VehicleJourney[src]

impl StructuralPartialEq for VehicleJourney[src]

impl WithId for VehicleJourney[src]

Auto Trait Implementations

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>,