pub struct ZoneLookup {
pub matches: Vec<ZoneMatch>,
pub safezone: f32,
}
Expand description
Matching zones and safezone from a database lookup.
Fields§
§matches: Vec<ZoneMatch>
List of matching zones.
safezone: f32
TODO: not sure what this value is
Trait Implementations§
Source§impl Clone for ZoneLookup
impl Clone for ZoneLookup
Source§fn clone(&self) -> ZoneLookup
fn clone(&self) -> ZoneLookup
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ZoneLookup
impl Debug for ZoneLookup
Source§impl PartialEq for ZoneLookup
impl PartialEq for ZoneLookup
impl StructuralPartialEq for ZoneLookup
Auto Trait Implementations§
impl Freeze for ZoneLookup
impl RefUnwindSafe for ZoneLookup
impl Send for ZoneLookup
impl Sync for ZoneLookup
impl Unpin for ZoneLookup
impl UnwindSafe for ZoneLookup
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