[][src]Struct game_features::SkillDefinitionBuilder

pub struct SkillDefinitionBuilder<K, E, S, I> { /* fields omitted */ }

Builder for SkillDefinition.

Implementations

impl<K: Clone, E: Clone, S: Clone, I: Clone> SkillDefinitionBuilder<K, E, S, I>[src]

pub fn key(&mut self, value: K) -> &mut Self[src]

pub fn name(&mut self, value: String) -> &mut Self[src]

pub fn friendly_name(&mut self, value: String) -> &mut Self[src]

pub fn description(&mut self, value: String) -> &mut Self[src]

pub fn cooldown(&mut self, value: f64) -> &mut Self[src]

pub fn passive(&mut self, value: bool) -> &mut Self[src]

pub fn conditions(&mut self, value: Vec<StatCondition<S>>) -> &mut Self[src]

pub fn item_conditions(&mut self, value: Vec<(I, usize, UseMode)>) -> &mut Self[src]

pub fn stat_effectors(&mut self, value: Vec<E>) -> &mut Self[src]

pub fn build(&self) -> Result<SkillDefinition<K, E, S, I>, String>[src]

Builds a new SkillDefinition.

Errors

If a required field has not been initialized.

Trait Implementations

impl<K: Clone, E: Clone, S: Clone, I: Clone> Clone for SkillDefinitionBuilder<K, E, S, I>[src]

impl<K: Default, E: Default, S: Default, I: Default> Default for SkillDefinitionBuilder<K, E, S, I>[src]

Auto Trait Implementations

impl<K, E, S, I> RefUnwindSafe for SkillDefinitionBuilder<K, E, S, I> where
    E: RefUnwindSafe,
    I: RefUnwindSafe,
    K: RefUnwindSafe,
    S: RefUnwindSafe

impl<K, E, S, I> Send for SkillDefinitionBuilder<K, E, S, I> where
    E: Send,
    I: Send,
    K: Send,
    S: Send

impl<K, E, S, I> Sync for SkillDefinitionBuilder<K, E, S, I> where
    E: Sync,
    I: Sync,
    K: Sync,
    S: Sync

impl<K, E, S, I> Unpin for SkillDefinitionBuilder<K, E, S, I> where
    E: Unpin,
    I: Unpin,
    K: Unpin,
    S: Unpin

impl<K, E, S, I> UnwindSafe for SkillDefinitionBuilder<K, E, S, I> where
    E: UnwindSafe,
    I: UnwindSafe,
    K: UnwindSafe,
    S: UnwindSafe

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