[][src]Struct weasel::team::ConcludeObjectives

pub struct ConcludeObjectives<R: BattleRules> { /* fields omitted */ }

Event to set the Conclusion of a team.

Methods

impl<R: BattleRules> ConcludeObjectives<R>[src]

pub fn trigger<'a, P: EventProcessor<R>>(
    processor: &'a mut P,
    id: TeamId<R>,
    conclusion: Conclusion
) -> ConcludeMissionTrigger<'a, R, P>
[src]

Returns a trigger for this event.

Trait Implementations

impl<R: BattleRules> Clone for ConcludeObjectives<R>[src]

impl<R: BattleRules> Debug for ConcludeObjectives<R>[src]

impl<'de, R: BattleRules> Deserialize<'de> for ConcludeObjectives<R> where
    TeamId<R>: Deserialize<'de>, 
[src]

impl<R: BattleRules + 'static> Event<R> for ConcludeObjectives<R>[src]

impl<R: BattleRules> Serialize for ConcludeObjectives<R> where
    TeamId<R>: Serialize
[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for ConcludeObjectives<R> where
    <<R as BattleRules>::TR as TeamRules<R>>::Id: RefUnwindSafe

impl<R> Send for ConcludeObjectives<R> where
    <<R as BattleRules>::TR as TeamRules<R>>::Id: Send

impl<R> Sync for ConcludeObjectives<R> where
    <<R as BattleRules>::TR as TeamRules<R>>::Id: Sync

impl<R> Unpin for ConcludeObjectives<R> where
    <<R as BattleRules>::TR as TeamRules<R>>::Id: Unpin

impl<R> UnwindSafe for ConcludeObjectives<R> where
    <<R as BattleRules>::TR as TeamRules<R>>::Id: 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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,