Struct transit_model::objects::StopArea[][src]

pub struct StopArea {
    pub id: String,
    pub name: String,
    pub codes: KeysValues,
    pub object_properties: KeysValues,
    pub comment_links: CommentLinksT,
    pub visible: bool,
    pub coord: Coord,
    pub timezone: Option<Tz>,
    pub geometry_id: Option<String>,
    pub equipment_id: Option<String>,
    pub level_id: Option<String>,
}

Fields

id: Stringname: Stringcodes: KeysValuesobject_properties: KeysValuescomment_links: CommentLinksTvisible: boolcoord: Coordtimezone: Option<Tz>geometry_id: Option<String>equipment_id: Option<String>level_id: Option<String>

Trait Implementations

impl AddPrefix for StopArea[src]

impl Clone for StopArea[src]

impl Codes for StopArea[src]

impl Debug for StopArea[src]

impl Default for StopArea[src]

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

impl From<StopPoint> for StopArea[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

impl GetObjectType for StopArea[src]

impl Id<StopArea> for StopArea[src]

impl Id<StopArea> for StopPoint[src]

impl PartialEq<StopArea> for StopArea[src]

impl Properties for StopArea[src]

impl Serialize for StopArea[src]

impl StructuralPartialEq for StopArea[src]

impl WithId for StopArea[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>,