[][src]Struct trenitalia::DetailedTrainTripStop

pub struct DetailedTrainTripStop {
    pub station: TrainStation,
    pub platform: String,
    pub arrival: Option<DateTime<Local>>,
    pub departure: Option<DateTime<Local>>,
    pub expected_arrival: Option<DateTime<Local>>,
    pub expected_departure: Option<DateTime<Local>>,
}

A specific stop in a train trip

Fields

station: TrainStationplatform: Stringarrival: Option<DateTime<Local>>departure: Option<DateTime<Local>>expected_arrival: Option<DateTime<Local>>expected_departure: Option<DateTime<Local>>

Trait Implementations

impl Debug for DetailedTrainTripStop[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, 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.