[][src]Struct no_proto::pointer::geo::NP_Geo

pub struct NP_Geo {
    pub size: u8,
    pub lat: f64,
    pub lng: f64,
}

Holds geographic coordinates

Check out documentation here.

Fields

size: u8

The size of this geographic coordinate. 4, 8 or 16

lat: f64

The latitude of this coordinate

lng: f64

The longitude of this coordinate

Implementations

impl NP_Geo[src]

pub fn new(size: u8, lat: f64, lng: f64) -> Self[src]

Create a new NP_Geo value, make sure the size matches the schema

pub fn get_deviser(size: i64) -> f64[src]

Get the deviser value depending on the resolution of the type in the schema

pub fn into_json(&self) -> NP_JSON[src]

Export this Geo point to JSON

pub fn get_bytes(&self) -> Option<NP_Geo_Bytes>[src]

Get the bytes that represent this geographic coordinate

Trait Implementations

impl Clone for NP_Geo[src]

impl Debug for NP_Geo[src]

impl Default for NP_Geo[src]

impl NP_Scalar for NP_Geo[src]

Auto Trait Implementations

impl Send for NP_Geo

impl Sync for NP_Geo

impl Unpin for NP_Geo

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.