[][src]Struct esl::Enchantment

pub struct Enchantment {
    pub enchantment_type: EnchantmentType,
    pub cost: u32,
    pub charge_amount: u32,
    pub auto_calculate: Either<bool, bool>,
    pub padding: u16,
}

Fields

enchantment_type: EnchantmentTypecost: u32charge_amount: u32auto_calculate: Either<bool, bool>padding: u16

Trait Implementations

impl Clone for Enchantment[src]

impl Debug for Enchantment[src]

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

impl Eq for Enchantment[src]

impl From<Enchantment> for Field[src]

impl PartialEq<Enchantment> for Enchantment[src]

impl Serialize for Enchantment[src]

impl StructuralEq for Enchantment[src]

impl StructuralPartialEq for Enchantment[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: 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.