Enum xdl::Dir8[][src]

pub enum Dir8 {
    N,
    NE,
    E,
    SE,
    S,
    SW,
    W,
    NW,
}

N | NE | E | SE | S | SW | W | NW

Variants

N
NE
E
SE
S
SW
W
NW

Implementations

impl Dir8[src]

pub fn from_signs(signs: [Sign; 2]) -> Option<Self>[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_f32(&self) -> [f32; 2][src]

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

impl Dir8[src]

pub const CLOCKWISE: &'static [Dir8; 8][src]

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

pub fn r45(&self) -> Self[src]

pub fn l45(&self) -> Self[src]

pub fn r90(&self) -> Self[src]

pub fn l90(&self) -> Self[src]

Trait Implementations

impl Clone for Dir8[src]

impl Copy for Dir8[src]

impl Debug for Dir8[src]

impl Eq for Dir8[src]

impl Hash for Dir8[src]

impl PartialEq<Dir8> for Dir8[src]

impl StructuralEq for Dir8[src]

impl StructuralPartialEq for Dir8[src]

Auto Trait Implementations

impl RefUnwindSafe for Dir8

impl Send for Dir8

impl Sync for Dir8

impl Unpin for Dir8

impl UnwindSafe for Dir8

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.