[][src]Struct transit_model::objects::StopTime

pub struct StopTime {
    pub stop_point_idx: Idx<StopPoint>,
    pub sequence: u32,
    pub arrival_time: Time,
    pub departure_time: Time,
    pub boarding_duration: u16,
    pub alighting_duration: u16,
    pub pickup_type: u8,
    pub drop_off_type: u8,
    pub datetime_estimated: bool,
    pub local_zone_id: Option<u16>,
    pub precision: Option<StopTimePrecision>,
}

Fields

stop_point_idx: Idx<StopPoint>sequence: u32arrival_time: Timedeparture_time: Timeboarding_duration: u16alighting_duration: u16pickup_type: u8drop_off_type: u8datetime_estimated: boollocal_zone_id: Option<u16>precision: Option<StopTimePrecision>

Trait Implementations

impl Clone for StopTime[src]

impl Debug for StopTime[src]

impl Eq for StopTime[src]

impl GetObjectType for StopTime[src]

impl Ord for StopTime[src]

impl PartialEq<StopTime> for StopTime[src]

impl PartialOrd<StopTime> for StopTime[src]

impl StructuralEq for StopTime[src]

impl StructuralPartialEq for StopTime[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> 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>,