pub enum GetBusStopsResponse {
Ok(Vec<BusStop>),
UnexpectedStatus(StatusCode, Vec<u8>),
}Expand description
Returns detailed information for all bus stops currently being serviced by buses, including bus stop codes and location coordinates.
Update freq: Ad-Hoc
Variants§
Trait Implementations§
Source§impl Clone for GetBusStopsResponse
impl Clone for GetBusStopsResponse
Source§fn clone(&self) -> GetBusStopsResponse
fn clone(&self) -> GetBusStopsResponse
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 Debug for GetBusStopsResponse
impl Debug for GetBusStopsResponse
Source§impl PartialEq for GetBusStopsResponse
impl PartialEq for GetBusStopsResponse
impl StructuralPartialEq for GetBusStopsResponse
Auto Trait Implementations§
impl Freeze for GetBusStopsResponse
impl RefUnwindSafe for GetBusStopsResponse
impl Send for GetBusStopsResponse
impl Sync for GetBusStopsResponse
impl Unpin for GetBusStopsResponse
impl UnsafeUnpin for GetBusStopsResponse
impl UnwindSafe for GetBusStopsResponse
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