pub struct LocationsResponse {
pub locations: Vec<Location>,
pub total: i64,
pub size: i64,
}Expand description
Envelope returned by /api/locations/search.
Fields§
§locations: Vec<Location>§total: i64§size: i64Trait Implementations§
Source§impl Clone for LocationsResponse
impl Clone for LocationsResponse
Source§fn clone(&self) -> LocationsResponse
fn clone(&self) -> LocationsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LocationsResponse
impl Debug for LocationsResponse
Source§impl<'de> Deserialize<'de> for LocationsResponse
impl<'de> Deserialize<'de> for LocationsResponse
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 LocationsResponse
impl RefUnwindSafe for LocationsResponse
impl Send for LocationsResponse
impl Sync for LocationsResponse
impl Unpin for LocationsResponse
impl UnsafeUnpin for LocationsResponse
impl UnwindSafe for LocationsResponse
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