pub trait TrainRequests<C: Client + ClientExt> {
    // Provided method
    async fn get_train_service_alert<S>(
        client: &C,
        skip: S
    ) -> LTAResult<TrainServiceAlert>
       where S: Into<Option<u32>> { ... }
}

Provided Methods§

source

async fn get_train_service_alert<S>( client: &C, skip: S ) -> LTAResult<TrainServiceAlert>
where S: Into<Option<u32>>,

Returns detailed information on train service unavailability during scheduled operating hours, such as affected line and stations etc.

Update freq: ad-hoc

Object Safety§

This trait is not object safe.

Implementors§