[][src]Struct townhopper::gtfs::StopTime

pub struct StopTime {
    pub trip_id: String,
    pub arrival_time: Duration,
    pub departure_time: Duration,
    pub stop_id: String,
    pub stop_sequence: i32,
    pub stop_headsign: Option<String>,
    pub pickup_type: Option<i32>,
    pub drop_off_type: Option<i32>,
    pub shape_dist_traveled: Option<f32>,
    pub timepoint: Option<i32>,
}

Fields

trip_id: Stringarrival_time: Durationdeparture_time: Durationstop_id: Stringstop_sequence: i32stop_headsign: Option<String>pickup_type: Option<i32>drop_off_type: Option<i32>shape_dist_traveled: Option<f32>timepoint: Option<i32>

Methods

impl StopTime[src]

Trait Implementations

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

Auto Trait Implementations

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]