[][src]Enum esl::ArmorType

pub enum ArmorType {
    Helmet,
    Cuirass,
    LeftPauldron,
    RightPauldron,
    Greaves,
    Boots,
    LeftGauntlet,
    RightGauntlet,
    Shield,
    LeftBracer,
    RightBracer,
}

Variants

Helmet
Cuirass
LeftPauldron
RightPauldron
Greaves
Boots
LeftGauntlet
RightGauntlet
Shield
LeftBracer
RightBracer

Trait Implementations

impl Clone for ArmorType[src]

impl Copy for ArmorType[src]

impl Debug for ArmorType[src]

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

impl Display for ArmorType[src]

impl Eq for ArmorType[src]

impl FromPrimitive for ArmorType[src]

impl FromStr for ArmorType[src]

type Err = ParseEnumError

The associated error which can be returned from parsing.

impl Hash for ArmorType[src]

impl Ord for ArmorType[src]

impl PartialEq<ArmorType> for ArmorType[src]

impl PartialOrd<ArmorType> for ArmorType[src]

impl Serialize for ArmorType[src]

impl StructuralEq for ArmorType[src]

impl StructuralPartialEq for ArmorType[src]

impl ToPrimitive for ArmorType[src]

impl TryFrom<i16> for ArmorType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<i32> for ArmorType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<i64> for ArmorType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<i8> for ArmorType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u16> for ArmorType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u32> for ArmorType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u64> for ArmorType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryFrom<u8> for ArmorType[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.