[][src]Struct dofus_stuff::dofapi::Equipement

pub struct Equipement {
    pub item_type: ItemType,
    pub ankama_id: u64,
    pub _id: u64,
    pub name: String,
    pub level: u8,
    pub url: String,
    pub set_id: Option<u64>,
    pub description: String,
    pub img_url: String,
    pub statistics: CaracLines,
    pub conditions: Condition,
}

Fields

item_type: ItemTypeankama_id: u64_id: u64name: Stringlevel: u8url: Stringset_id: Option<u64>description: Stringimg_url: Stringstatistics: CaracLinesconditions: Condition

Methods

impl Equipement[src]

pub fn is_weapon(&self) -> bool[src]

Check wether this equipement is a weapon

Trait Implementations

impl Clone for Equipement[src]

impl Debug for Equipement[src]

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

Auto Trait Implementations

impl Send for Equipement

impl Unpin for Equipement

impl Sync for Equipement

impl UnwindSafe for Equipement

impl RefUnwindSafe for Equipement

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, 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>,