[][src]Enum esl::BipedObject

pub enum BipedObject {
    Head,
    Hair,
    Neck,
    Cuirass,
    Groin,
    Skirt,
    RightHand,
    LeftHand,
    RightWrist,
    LeftWrist,
    Shield,
    RightForearm,
    LeftForearm,
    RightUpperArm,
    LeftUpperArm,
    RightFoot,
    LeftFoot,
    RightAnkle,
    LeftAnkle,
    RightKnee,
    LeftKnee,
    RightUpperLeg,
    LeftUpperLeg,
    RightPauldron,
    LeftPauldron,
    Weapon,
    Tail,
}

Variants

Head
Hair
Neck
Cuirass
Groin
Skirt
RightHand
LeftHand
RightWrist
LeftWrist
Shield
RightForearm
LeftForearm
RightUpperArm
LeftUpperArm
RightFoot
LeftFoot
RightAnkle
LeftAnkle
RightKnee
LeftKnee
RightUpperLeg
LeftUpperLeg
RightPauldron
LeftPauldron
Weapon
Tail

Trait Implementations

impl Clone for BipedObject[src]

impl Copy for BipedObject[src]

impl Debug for BipedObject[src]

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

impl Display for BipedObject[src]

impl Eq for BipedObject[src]

impl From<BipedObject> for Field[src]

impl FromPrimitive for BipedObject[src]

impl FromStr for BipedObject[src]

type Err = ParseEnumError

The associated error which can be returned from parsing.

impl Hash for BipedObject[src]

impl Ord for BipedObject[src]

impl PartialEq<BipedObject> for BipedObject[src]

impl PartialOrd<BipedObject> for BipedObject[src]

impl Serialize for BipedObject[src]

impl StructuralEq for BipedObject[src]

impl StructuralPartialEq for BipedObject[src]

impl ToPrimitive for BipedObject[src]

impl TryFrom<i16> for BipedObject[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<i32> for BipedObject[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<i64> for BipedObject[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<i8> for BipedObject[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u16> for BipedObject[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u32> for BipedObject[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u64> for BipedObject[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u8> for BipedObject[src]

type Error = &'static str

The type returned in the event of a conversion error.

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: 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> ToString for T where
    T: Display + ?Sized
[src]

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.