[][src]Enum generic_octree::Orientation

pub enum Orientation {
    LBU,
    LFU,
    LFD,
    LBD,
    RBD,
    RFD,
    RFU,
    RBU,
    N,
    L,
    R,
    F,
    B,
    U,
    D,
    LF,
    LB,
    RF,
    RB,
    FU,
    FD,
    BU,
    BD,
    LU,
    LD,
    RU,
    RD,
}

Variants

LBU
LFU
LFD
LBD
RBD
RFD
RFU
RBU
N
L
R
F
B
U
D
LF
LB
RF
RB
FU
FD
BU
BD
LU
LD
RU
RD

Implementations

impl Orientation[src]

pub fn make_new_center<L>(
    self,
    loc_code: L,
    center: (f64, f64, f64)
) -> (f64, f64, f64) where
    L: LocCode
[src]

Trait Implementations

impl BitOr<Orientation> for u8[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<Orientation> for i16[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<Orientation> for u16[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<Orientation> for i32[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<Orientation> for u32[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<Orientation> for i64[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<Orientation> for u64[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<Orientation> for Orientation[src]

type Output = Self

The resulting type after applying the | operator.

impl Clone for Orientation[src]

impl Copy for Orientation[src]

impl Debug for Orientation[src]

impl Into<u8> for Orientation[src]

TODO: Make this TryInto

Auto Trait Implementations

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.