[][src]Struct weasel::event::EventWrapper

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

A wrapper to decorate verified events with additional data.

Implementations

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

pub fn id(&self) -> EventId[src]

Returns this event's id.

pub fn origin(&self) -> Option<EventId>[src]

Returns the id of the event that caused this one.

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

Returns the event.

pub fn version(self, version: Version<R>) -> VersionedEventWrapper<R>[src]

Consume this event wrapper and returns a versioned instance of it.

Methods from Deref<Target = Box<dyn Event<R> + Send>>

Trait Implementations

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

impl<R: BattleRules> Deref for EventWrapper<R>[src]

type Target = Box<dyn Event<R> + Send>

The resulting type after dereferencing.

Auto Trait Implementations

impl<R> !RefUnwindSafe for EventWrapper<R>

impl<R> Send for EventWrapper<R>

impl<R> !Sync for EventWrapper<R>

impl<R> Unpin for EventWrapper<R>

impl<R> !UnwindSafe for EventWrapper<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> 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>,