[][src]Struct esl::Race

pub struct Race {
    pub skill_1: Either<Option<i32>, Skill>,
    pub skill_1_bonus: u32,
    pub skill_2: Either<Option<i32>, Skill>,
    pub skill_2_bonus: u32,
    pub skill_3: Either<Option<i32>, Skill>,
    pub skill_3_bonus: u32,
    pub skill_4: Either<Option<i32>, Skill>,
    pub skill_4_bonus: u32,
    pub skill_5: Either<Option<i32>, Skill>,
    pub skill_5_bonus: u32,
    pub skill_6: Either<Option<i32>, Skill>,
    pub skill_6_bonus: u32,
    pub skill_7: Either<Option<i32>, Skill>,
    pub skill_7_bonus: u32,
    pub attributes: Attributes<RaceAttribute>,
    pub height: RaceParameter,
    pub weight: RaceParameter,
    pub flags: RaceFlags,
}

Fields

skill_1: Either<Option<i32>, Skill>skill_1_bonus: u32skill_2: Either<Option<i32>, Skill>skill_2_bonus: u32skill_3: Either<Option<i32>, Skill>skill_3_bonus: u32skill_4: Either<Option<i32>, Skill>skill_4_bonus: u32skill_5: Either<Option<i32>, Skill>skill_5_bonus: u32skill_6: Either<Option<i32>, Skill>skill_6_bonus: u32skill_7: Either<Option<i32>, Skill>skill_7_bonus: u32attributes: Attributes<RaceAttribute>height: RaceParameterweight: RaceParameterflags: RaceFlags

Trait Implementations

impl Clone for Race[src]

impl Debug for Race[src]

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

impl Eq for Race[src]

impl From<Race> for Field[src]

impl PartialEq<Race> for Race[src]

impl Serialize for Race[src]

impl StructuralEq for Race[src]

impl StructuralPartialEq for Race[src]

Auto Trait Implementations

impl RefUnwindSafe for Race

impl Send for Race

impl Sync for Race

impl Unpin for Race

impl UnwindSafe for Race

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