[][src]Struct hilbert16::Point

pub struct Point {
    pub x: u16,
    pub y: u16,
}

A point type with u16 coordinates.

Fields

x: u16y: u16

Implementations

impl Point[src]

pub const ORIGIN: Self[src]

The point (0, 0).

Trait Implementations

impl Clone for Point[src]

impl Copy for Point[src]

impl Debug for Point[src]

impl Default for Point[src]

impl Eq for Point[src]

impl From<[u16; 2]> for Point[src]

impl From<(u16, u16)> for Point[src]

impl From<Point> for (u16, u16)[src]

impl From<Point> for [u16; 2][src]

impl PartialEq<Point> for Point[src]

impl StructuralEq for Point[src]

impl StructuralPartialEq for Point[src]

Auto Trait Implementations

impl Send for Point[src]

impl Sync for Point[src]

impl Unpin for Point[src]

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.