[][src]Struct esl::Faction

pub struct Faction {
    pub favored_attribute_1: Attribute,
    pub favored_attribute_2: Attribute,
    pub ranks: [Rank; 10],
    pub favored_skill_1: Either<Option<i32>, Skill>,
    pub favored_skill_2: Either<Option<i32>, Skill>,
    pub favored_skill_3: Either<Option<i32>, Skill>,
    pub favored_skill_4: Either<Option<i32>, Skill>,
    pub favored_skill_5: Either<Option<i32>, Skill>,
    pub favored_skill_6: Either<Option<i32>, Skill>,
    pub favored_skill_7: Either<Option<i32>, Skill>,
    pub hidden_from_pc: bool,
}

Fields

favored_attribute_1: Attributefavored_attribute_2: Attributeranks: [Rank; 10]favored_skill_1: Either<Option<i32>, Skill>favored_skill_2: Either<Option<i32>, Skill>favored_skill_3: Either<Option<i32>, Skill>favored_skill_4: Either<Option<i32>, Skill>favored_skill_5: Either<Option<i32>, Skill>favored_skill_6: Either<Option<i32>, Skill>favored_skill_7: Either<Option<i32>, Skill>hidden_from_pc: bool

Trait Implementations

impl Clone for Faction[src]

impl Debug for Faction[src]

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

impl Eq for Faction[src]

impl From<Faction> for Field[src]

impl PartialEq<Faction> for Faction[src]

impl Serialize for Faction[src]

impl StructuralEq for Faction[src]

impl StructuralPartialEq for Faction[src]

Auto Trait Implementations

impl RefUnwindSafe for Faction

impl Send for Faction

impl Sync for Faction

impl Unpin for Faction

impl UnwindSafe for Faction

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.