Struct geom::HashablePt2D[][src]

pub struct HashablePt2D {
    x_nan: NotNan<f64>,
    y_nan: NotNan<f64>,
}

This represents world space, NOT LonLat.

Fields

x_nan: NotNan<f64>y_nan: NotNan<f64>

Implementations

impl HashablePt2D[src]

pub fn to_pt2d(self) -> Pt2D[src]

Trait Implementations

impl Clone for HashablePt2D[src]

impl Copy for HashablePt2D[src]

impl Debug for HashablePt2D[src]

impl Eq for HashablePt2D[src]

impl Hash for HashablePt2D[src]

impl Ord for HashablePt2D[src]

impl PartialEq<HashablePt2D> for HashablePt2D[src]

impl PartialOrd<HashablePt2D> for HashablePt2D[src]

impl StructuralEq for HashablePt2D[src]

impl StructuralPartialEq for HashablePt2D[src]

Auto Trait Implementations

impl RefUnwindSafe for HashablePt2D

impl Send for HashablePt2D

impl Sync for HashablePt2D

impl Unpin for HashablePt2D

impl UnwindSafe for HashablePt2D

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> Same<T> for T

type Output = T

Should always be Self

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.