[][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>,
    pub sha256: Option<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>sha256: Option<String>

Implementations

impl RawGtfs[src]

pub fn print_stats(&self)[src]

Prints on stdout some basic statistics about the GTFS file

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

Reads from an url (if starts with http), or a local path (either a directory or zipped file) To read from an url, build with read-url feature See also RawGtfs::from_url and RawGtfs::from_path if you don’t want the library to guess

pub fn from_path<P>(path: P) -> Result<Self, Error> where
    P: AsRef<Path> + Display
[src]

Reads the raw GTFS from a local zip archive or local directory

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

Reads the raw GTFS from a remote url The library must be built with the read-url feature

pub async fn from_url_async<U: IntoUrl>(url: U) -> Result<Self, Error>[src]

Non-blocking read the raw GTFS from a remote url The library must be built with the read-url feature

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

Trait Implementations

impl Debug for RawGtfs[src]

impl TryFrom<RawGtfs> for Gtfs[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl !RefUnwindSafe for RawGtfs

impl Send for RawGtfs

impl Sync for RawGtfs

impl Unpin for RawGtfs

impl !UnwindSafe for RawGtfs

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, 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.