[][src]Struct splitterrust_db::models::spell_schools::Spell

pub struct Spell {
    pub cast_duration: String,
    pub options: Vec<String>,
    pub range: String,
    pub difficulty: String,
    pub typus: String,
    pub enforced: String,
    pub effect: String,
    pub duration_of_effect: String,
    pub cost: String,
    pub name: String,
    pub schools: Schools,
}

Fields

cast_duration: Stringoptions: Vec<String>range: Stringdifficulty: Stringtypus: Stringenforced: Stringeffect: Stringduration_of_effect: Stringcost: Stringname: Stringschools: Schools

Methods

impl Spell[src]

Trait Implementations

impl Clone for Spell[src]

impl Debug for Spell[src]

impl Default for Spell[src]

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

impl PartialEq<Spell> for Spell[src]

impl Serialize for Spell[src]

impl StructuralPartialEq for Spell[src]

Auto Trait Implementations

impl RefUnwindSafe for Spell

impl Send for Spell

impl Sync for Spell

impl Unpin for Spell

impl UnwindSafe for Spell

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: Deserialize<'de>, 
[src]

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

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

impl<T> IntoSql for 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.