[][src]Enum dofus_stuff::dofapi::CaracKind

pub enum CaracKind {
    AP,
    APReduction,
    APResistance,
    Critical,
    CriticalDamage,
    CriticalResistance,
    Damage(Element),
    Dodge,
    Heals,
    Initiative,
    Lock,
    MP,
    MPReduction,
    MPResistance,
    PerMeleeDamage,
    PerMeleeResistance,
    PerRangedDamage,
    PerRangedResistance,
    PerResistance(Element),
    PerSpellDamage,
    PerWeaponDamage,
    Pods,
    Power,
    Prospecting,
    PushbackDamage,
    PushbackResistance,
    Range,
    RawDamage,
    ReflectDamage,
    Resistance(Element),
    Special(String),
    Stats(Element),
    Summons,
    TrapDamage,
    TrapPower,
    Vitality,
    Wisdom,
}

Variants

AP
APReduction
APResistance
Critical
CriticalDamage
CriticalResistance
Damage(Element)
Dodge
Heals
Initiative
Lock
MP
MPReduction
MPResistance
PerMeleeDamage
PerMeleeResistance
PerRangedDamage
PerRangedResistance
PerResistance(Element)
PerSpellDamage
PerWeaponDamage
Pods
Power
Prospecting
PushbackDamage
PushbackResistance
Range
RawDamage
ReflectDamage
Resistance(Element)
Special(String)
Stats(Element)
Summons
TrapDamage
TrapPower
Vitality
Wisdom

Methods

impl CaracKind[src]

pub fn smithmage_weight(&self) -> Result<f64, ()>[src]

Trait Implementations

impl Eq for CaracKind[src]

impl Clone for CaracKind[src]

impl PartialEq<CaracKind> for CaracKind[src]

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

impl Hash for CaracKind[src]

impl Debug for CaracKind[src]

impl Display for CaracKind[src]

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

Auto Trait Implementations

impl Send for CaracKind

impl Unpin for CaracKind

impl Sync for CaracKind

impl UnwindSafe for CaracKind

impl RefUnwindSafe for CaracKind

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,