[][src]Struct weasel::team::ConcludeObjectivesTrigger

pub struct ConcludeObjectivesTrigger<'a, R, P> where
    R: BattleRules,
    P: EventProcessor<R>, 
{ /* fields omitted */ }

Trigger to build and fire a ConcludeObjectives event.

Trait Implementations

impl<'a, R, P> EventTrigger<'a, R, P> for ConcludeObjectivesTrigger<'a, R, P> where
    R: BattleRules + 'static,
    P: EventProcessor<R>, 
[src]

fn event(&self) -> Box<dyn Event<R> + Send>[src]

Returns a ConcludeObjectives event.

Auto Trait Implementations

impl<'a, R, P> RefUnwindSafe for ConcludeObjectivesTrigger<'a, R, P> where
    P: RefUnwindSafe,
    <<R as BattleRules>::TR as TeamRules<R>>::Id: RefUnwindSafe

impl<'a, R, P> Send for ConcludeObjectivesTrigger<'a, R, P> where
    P: Send,
    <<R as BattleRules>::TR as TeamRules<R>>::Id: Send

impl<'a, R, P> Sync for ConcludeObjectivesTrigger<'a, R, P> where
    P: Sync,
    <<R as BattleRules>::TR as TeamRules<R>>::Id: Sync

impl<'a, R, P> Unpin for ConcludeObjectivesTrigger<'a, R, P> where
    <<R as BattleRules>::TR as TeamRules<R>>::Id: Unpin

impl<'a, R, P> !UnwindSafe for ConcludeObjectivesTrigger<'a, R, P>

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,