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

Provided Methods§

source

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

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§