Struct geo_types::Coordinate[][src]

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

A primitive type which holds x and y position information

Fields

Trait Implementations

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter. Read more

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

Auto Trait Implementations

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

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