[][src]Struct weasel::event::Prioritized

pub struct Prioritized<'a, R: BattleRules> { /* fields omitted */ }

Decorator for EventQueue processor. It appends new events at the front of the queue, instead of pushing them at the back.

Examples

use weasel::{
    battle_rules, event::DummyEvent, event::Prioritized, rules::empty::*, BattleRules,
    EndBattle, EventKind, EventQueue, EventTrigger,
};

battle_rules! {}

let mut queue = EventQueue::<CustomRules>::new();
EndBattle::trigger(&mut queue).fire();
DummyEvent::trigger(&mut Prioritized::new(&mut queue)).fire();
assert_eq!(queue[0].kind(), EventKind::DummyEvent);
assert_eq!(queue[1].kind(), EventKind::EndBattle);

Implementations

impl<'a, R: BattleRules> Prioritized<'a, R>[src]

pub fn new(event_queue: &'a mut EventQueue<R>) -> Self[src]

Creates a new Prioritized decorator for the given event_queue.

Trait Implementations

impl<R, '_> EventProcessor<R> for Prioritized<'_, R> where
    R: BattleRules
[src]

type ProcessOutput = ()

Return type for this processor's process().

Auto Trait Implementations

impl<'a, R> !RefUnwindSafe for Prioritized<'a, R>

impl<'a, R> !Send for Prioritized<'a, R>

impl<'a, R> !Sync for Prioritized<'a, R>

impl<'a, R> Unpin for Prioritized<'a, R>

impl<'a, R> !UnwindSafe for Prioritized<'a, R>

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