pub enum GetTaxiAvailabilityResponse {
Ok(Vec<Coordinates>),
UnexpectedStatus(StatusCode, Vec<u8>),
}Expand description
Returns the coordinates of all taxis currently available for hire.
Update freq: 1 min
Variants§
Trait Implementations§
Source§impl Clone for GetTaxiAvailabilityResponse
impl Clone for GetTaxiAvailabilityResponse
Source§fn clone(&self) -> GetTaxiAvailabilityResponse
fn clone(&self) -> GetTaxiAvailabilityResponse
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 GetTaxiAvailabilityResponse
impl Debug for GetTaxiAvailabilityResponse
impl StructuralPartialEq for GetTaxiAvailabilityResponse
Auto Trait Implementations§
impl Freeze for GetTaxiAvailabilityResponse
impl RefUnwindSafe for GetTaxiAvailabilityResponse
impl Send for GetTaxiAvailabilityResponse
impl Sync for GetTaxiAvailabilityResponse
impl Unpin for GetTaxiAvailabilityResponse
impl UnsafeUnpin for GetTaxiAvailabilityResponse
impl UnwindSafe for GetTaxiAvailabilityResponse
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