[][src]Struct tidwall_geohash::Box

pub struct Box {
    pub min_lat: f64,
    pub max_lat: f64,
    pub min_lng: f64,
    pub max_lng: f64,
}

Box represents a rectangle in latitude/longitude space.

Fields

min_lat: f64max_lat: f64min_lng: f64max_lng: f64

Methods

impl Box[src]

pub fn center(&self) -> (f64, f64)[src]

center returns the center of the box (lat, lng).

pub fn contains(&self, lat: f64, lng: f64) -> bool[src]

contains decides whether (lat, lng) is contained in the box. The containment test is inclusive of the edges and corners.

pub fn round(&self) -> (f64, f64)[src]

round returns a point inside the box, making an effort to round to minimal precision.

Trait Implementations

impl Debug for Box[src]

Auto Trait Implementations

impl Sync for Box

impl Send for Box

impl Unpin for Box

impl RefUnwindSafe for Box

impl UnwindSafe for Box

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]