pub trait FacilityRequests<C: Client + ClientExt> {
    // Required method
    fn get_facilities_maintenance(
        client: &C,
        station_code: StationCode
    ) -> LTAResult<Vec<String>>;
}

Required Methods§

source

fn get_facilities_maintenance( client: &C, station_code: StationCode ) -> LTAResult<Vec<String>>

Returns pre-signed links to JSON file containing facilities maintenance schedules of the particular station

Update Freq: Adhoc

Object Safety§

This trait is not object safe.

Implementors§