[][src]Struct gtfs_structures::Stop

pub struct Stop {
    pub id: String,
    pub code: Option<String>,
    pub name: String,
    pub description: String,
    pub location_type: LocationType,
    pub parent_station: Option<String>,
    pub longitude: f64,
    pub latitude: f64,
    pub timezone: Option<String>,
    pub wheelchair_boarding: Availability,
}

Fields

id: Stringcode: Option<String>name: Stringdescription: Stringlocation_type: LocationTypeparent_station: Option<String>longitude: f64latitude: f64timezone: Option<String>wheelchair_boarding: Availability

Trait Implementations

impl Id for Stop[src]

impl Type for Stop[src]

impl Default for Stop[src]

impl Clone for Stop[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for Stop[src]

impl Debug for Stop[src]

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

Auto Trait Implementations

impl Send for Stop

impl Sync for Stop

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

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