Struct gtfs_server::models::time::Time[][src]

pub struct Time {
    pub trip_id: String,
    pub arrival_time: String,
    pub departure_time: String,
    pub stop_id: String,
    pub stop_sequence: i32,
    pub pickup_type: PickUp,
    pub drop_off_type: DropOff,
    pub route_id: String,
    pub service_days: Vec<bool>,
    pub service_uid: String,
    pub start_date: NaiveDate,
    pub end_date: NaiveDate,
    pub feed_id: String,
}

Fields

Trait Implementations

impl Debug for Time
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Time

impl Sync for Time