Enum xdl::Dir4[][src]

pub enum Dir4 {
    N,
    E,
    S,
    W,
}

N | E | S | W

Variants

N
E
S
W

Implementations

impl Dir4[src]

pub fn x_sign(&self) -> Sign[src]

pub fn y_sign(&self) -> Sign[src]

pub fn signs(&self) -> [Sign; 2][src]

pub fn signs_i32(&self) -> [i32; 2][src]

pub fn signs_i64(&self) -> [i64; 2][src]

pub fn signs_isize(&self) -> [isize; 2][src]

impl Dir4[src]

pub fn inv(&self) -> Dir4[src]

Trait Implementations

impl Clone for Dir4[src]

impl Copy for Dir4[src]

impl Debug for Dir4[src]

impl Eq for Dir4[src]

impl Hash for Dir4[src]

impl PartialEq<Dir4> for Dir4[src]

impl StructuralEq for Dir4[src]

impl StructuralPartialEq for Dir4[src]

Auto Trait Implementations

impl RefUnwindSafe for Dir4

impl Send for Dir4

impl Sync for Dir4

impl Unpin for Dir4

impl UnwindSafe for Dir4

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> 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.