[][src]Enum reso_dd::DirectionFaces

pub enum DirectionFaces {
    East,
    North,
    Northeast,
    Northwest,
    South,
    Southeast,
    Southwest,
    West,
    OpenEnumeration(String),
}

Variants

East

"East": The front of the structure faces east.

North

"North": The front of the structure faces north.

Northeast

"Northeast": The front of the structure faces northeast.

Northwest

"Northwest": The front of the structure faces northwest.

South

"South": The front of the structure faces south.

Southeast

"Southeast": The front of the structure faces southeast.

Southwest

"Southwest": The front of the structure faces southwest.

West

"West": The front of the structure faces west.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for DirectionFaces[src]

impl Debug for DirectionFaces[src]

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

impl Eq for DirectionFaces[src]

impl<'_> From<&'_ str> for DirectionFaces[src]

impl<'a> From<&'a DirectionFaces> for &'a str[src]

impl From<String> for DirectionFaces[src]

impl PartialEq<DirectionFaces> for DirectionFaces[src]

impl ResoEnumeration for DirectionFaces[src]

impl Serialize for DirectionFaces[src]

impl StructuralEq for DirectionFaces[src]

impl StructuralPartialEq for DirectionFaces[src]

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> DeserializeOwned for T where
    T: 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.