[][src]Struct trezm_redis::geo::Coord

pub struct Coord<T> {
    pub longitude: T,
    pub latitude: T,
}

A coordinate (longitude, latitude). Can be used with geo_pos to parse response from Redis.

T is the type of the every value.

  • You may want to use either f64 or f32 if you want to perform mathematical operations.
  • To keep the raw value from Redis, use String.

Fields

longitude: T

Longitude

latitude: T

Latitude

Methods

impl<T> Coord<T>[src]

pub fn lon_lat(longitude: T, latitude: T) -> Coord<T>[src]

Create a new Coord with the (longitude, latitude)

Trait Implementations

impl<T: Debug> Debug for Coord<T>[src]

impl<T: FromRedisValue> FromRedisValue for Coord<T>[src]

impl<T: PartialEq> PartialEq<Coord<T>> for Coord<T>[src]

impl<T> StructuralPartialEq for Coord<T>[src]

impl<T: ToRedisArgs> ToRedisArgs for Coord<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Coord<T> where
    T: RefUnwindSafe

impl<T> Send for Coord<T> where
    T: Send

impl<T> Sync for Coord<T> where
    T: Sync

impl<T> Unpin for Coord<T> where
    T: Unpin

impl<T> UnwindSafe for Coord<T> where
    T: UnwindSafe

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,