[][src]Struct gtfs_structures::RawGtfs

pub struct RawGtfs {
    pub read_duration: i64,
    pub calendar: Option<Result<Vec<Calendar>, Error>>,
    pub calendar_dates: Option<Result<Vec<CalendarDate>, Error>>,
    pub stops: Result<Vec<Stop>, Error>,
    pub routes: Result<Vec<Route>, Error>,
    pub trips: Result<Vec<RawTrip>, Error>,
    pub agencies: Result<Vec<Agency>, Error>,
    pub shapes: Option<Result<Vec<Shape>, Error>>,
    pub fare_attributes: Option<Result<Vec<FareAttribute>, Error>>,
    pub feed_info: Option<Result<Vec<FeedInfo>, Error>>,
    pub stop_times: Result<Vec<RawStopTime>, Error>,
    pub files: Vec<String>,
}

Data structure that map the GTFS csv with little intelligence

Fields

read_duration: i64calendar: Option<Result<Vec<Calendar>, Error>>calendar_dates: Option<Result<Vec<CalendarDate>, Error>>stops: Result<Vec<Stop>, Error>routes: Result<Vec<Route>, Error>trips: Result<Vec<RawTrip>, Error>agencies: Result<Vec<Agency>, Error>shapes: Option<Result<Vec<Shape>, Error>>fare_attributes: Option<Result<Vec<FareAttribute>, Error>>feed_info: Option<Result<Vec<FeedInfo>, Error>>stop_times: Result<Vec<RawStopTime>, Error>files: Vec<String>

Methods

impl RawGtfs[src]

pub fn print_stats(&self)[src]

pub fn new(path: &str) -> Result<Self, Error>[src]

pub fn from_zip(file: &str) -> Result<Self, Error>[src]

pub fn from_url(url: &str) -> Result<Self, Error>[src]

pub fn from_reader<T: Read + Seek>(reader: T) -> Result<Self, Error>[src]

Auto Trait Implementations

impl Send for RawGtfs

impl Sync for RawGtfs

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]