[][src]Enum toio::proto::Posture

#[repr(u8)]pub enum Posture {
    HeadUp,
    BottomUp,
    BackUp,
    FrontUp,
    RightSideUp,
    LeftSideUp,
}

Posture of the cube.

Variants

HeadUp

The top side of the cube is up.

BottomUp

The bottom side of the cube is up.

BackUp

The back side of the cube is up.

FrontUp

The front side of the cube is up.

RightSideUp

The right side of the cube is up.

LeftSideUp

The let side of the cube is up.

Trait Implementations

impl Clone for Posture[src]

impl Copy for Posture[src]

impl Debug for Posture[src]

impl<'de> Deserialize<'de> for Posture[src]

impl Eq for Posture[src]

impl Hash for Posture[src]

impl PartialEq<Posture> for Posture[src]

impl Serialize for Posture[src]

impl StructuralEq for Posture[src]

impl StructuralPartialEq for Posture[src]

Auto Trait Implementations

impl RefUnwindSafe for Posture

impl Send for Posture

impl Sync for Posture

impl Unpin for Posture

impl UnwindSafe for Posture

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.