Struct gtfs_structures::RawFrequency
source · pub struct RawFrequency {
pub trip_id: String,
pub start_time: u32,
pub end_time: u32,
pub headway_secs: u32,
pub exact_times: Option<ExactTimes>,
}Fields§
§trip_id: StringReferences the Trip that uses frequency
start_time: u32Time at which the first vehicle departs from the first stop of the trip
end_time: u32Time at which service changes to a different headway (or ceases) at the first stop in the trip
headway_secs: u32Time, in seconds, between departures from the same stop (headway) for the trip, during the time interval specified by start_time and end_time
exact_times: Option<ExactTimes>Indicates the type of service for a trip
Trait Implementations§
source§impl Debug for RawFrequency
impl Debug for RawFrequency
source§impl Default for RawFrequency
impl Default for RawFrequency
source§fn default() -> RawFrequency
fn default() -> RawFrequency
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RawFrequency
impl<'de> Deserialize<'de> for RawFrequency
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more