pub enum GetFacilitiesMaintenanceResponse {
Ok(Vec<String>),
UnexpectedStatus(StatusCode, Vec<u8>),
}Expand description
Returns links to facility maintenance data files for a queried MRT/LRT station. Each link points to a JSON file describing the maintenance works currently in progress at that station.
Update freq: Ad-Hoc
Variants§
Trait Implementations§
Source§impl Clone for GetFacilitiesMaintenanceResponse
impl Clone for GetFacilitiesMaintenanceResponse
Source§fn clone(&self) -> GetFacilitiesMaintenanceResponse
fn clone(&self) -> GetFacilitiesMaintenanceResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for GetFacilitiesMaintenanceResponse
impl PartialEq for GetFacilitiesMaintenanceResponse
Source§fn eq(&self, other: &GetFacilitiesMaintenanceResponse) -> bool
fn eq(&self, other: &GetFacilitiesMaintenanceResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetFacilitiesMaintenanceResponse
Auto Trait Implementations§
impl Freeze for GetFacilitiesMaintenanceResponse
impl RefUnwindSafe for GetFacilitiesMaintenanceResponse
impl Send for GetFacilitiesMaintenanceResponse
impl Sync for GetFacilitiesMaintenanceResponse
impl Unpin for GetFacilitiesMaintenanceResponse
impl UnsafeUnpin for GetFacilitiesMaintenanceResponse
impl UnwindSafe for GetFacilitiesMaintenanceResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more