pub struct LocationSearchResponse {
pub data: Vec<Location>,
}Expand description
Response from the location search endpoint.
Fields§
§data: Vec<Location>List of matching locations.
Trait Implementations§
Source§impl Clone for LocationSearchResponse
impl Clone for LocationSearchResponse
Source§fn clone(&self) -> LocationSearchResponse
fn clone(&self) -> LocationSearchResponse
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 LocationSearchResponse
impl Debug for LocationSearchResponse
Source§impl<'de> Deserialize<'de> for LocationSearchResponse
impl<'de> Deserialize<'de> for LocationSearchResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LocationSearchResponse
impl RefUnwindSafe for LocationSearchResponse
impl Send for LocationSearchResponse
impl Sync for LocationSearchResponse
impl Unpin for LocationSearchResponse
impl UnsafeUnpin for LocationSearchResponse
impl UnwindSafe for LocationSearchResponse
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