pub struct QueryFootprint {
pub latitude: f64,
pub longitude: f64,
pub radius_km: f32,
}Expand description
A geographic footprint associated with a query.
Fields§
§latitude: f64§longitude: f64§radius_km: f32Trait Implementations§
Source§impl Clone for QueryFootprint
impl Clone for QueryFootprint
Source§fn clone(&self) -> QueryFootprint
fn clone(&self) -> QueryFootprint
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 QueryFootprint
impl Debug for QueryFootprint
Source§impl PartialEq for QueryFootprint
impl PartialEq for QueryFootprint
Source§fn eq(&self, other: &QueryFootprint) -> bool
fn eq(&self, other: &QueryFootprint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueryFootprint
Auto Trait Implementations§
impl Freeze for QueryFootprint
impl RefUnwindSafe for QueryFootprint
impl Send for QueryFootprint
impl Sync for QueryFootprint
impl Unpin for QueryFootprint
impl UnsafeUnpin for QueryFootprint
impl UnwindSafe for QueryFootprint
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