[][src]Struct geo_types::Coordinate

pub struct Coordinate<T> where
    T: CoordinateType
{ pub x: T, pub y: T, }

A lightweight struct used to store coordinates on the 2-dimensional Cartesian plane.

Unlike Point (which in the future may contain additional information such as an envelope, a precision model, and spatial reference system information), a Coordinate only contains ordinate values and accessor methods.

Fields

x: Ty: T

Methods

impl<T> Coordinate<T> where
    T: CoordinateType
[src]

pub fn x_y(&self) -> (T, T)[src]

Returns a tuple that contains the x/horizontal & y/vertical component of the coordinate.

Examples

use geo_types::Coordinate;

let c = Coordinate {
    x: 40.02f64,
    y: 116.34,
};
let (x, y) = c.x_y();

assert_eq!(y, 116.34);
assert_eq!(x, 40.02f64);

Trait Implementations

impl<T: PartialEq> PartialEq<Coordinate<T>> for Coordinate<T> where
    T: CoordinateType
[src]

impl<T: Clone> Clone for Coordinate<T> where
    T: CoordinateType
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: CoordinateType> From<(T, T)> for Coordinate<T>[src]

impl<T: CoordinateType> From<[T; 2]> for Coordinate<T>[src]

impl<T: CoordinateType> From<Point<T>> for Coordinate<T>[src]

impl<T: CoordinateType> From<Coordinate<T>> for Point<T>[src]

impl<T: Copy> Copy for Coordinate<T> where
    T: CoordinateType
[src]

impl<T: Debug> Debug for Coordinate<T> where
    T: CoordinateType
[src]

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.