[][src]Struct weasel::event::VersionedEventWrapper

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

Decorates an EventWrapper with the battle rules version.

Implementations

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

pub fn wrapper(&self) -> &EventWrapper<R>[src]

Returns the EventWrapper contained in this object.

pub fn version(&self) -> &Version<R>[src]

Returns the BattleRules' version of the event.

Methods from Deref<Target = EventWrapper<R>>

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.

Trait Implementations

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

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

type Target = EventWrapper<R>

The resulting type after dereferencing.

impl<R: BattleRules + 'static> From<FlatVersionedEvent<R>> for VersionedEventWrapper<R>[src]

impl<R: BattleRules + 'static> From<VersionedEventWrapper<R>> for FlatVersionedEvent<R>[src]

Auto Trait Implementations

impl<R> !RefUnwindSafe for VersionedEventWrapper<R>

impl<R> Send for VersionedEventWrapper<R> where
    <R as BattleRules>::Version: Send

impl<R> !Sync for VersionedEventWrapper<R>

impl<R> Unpin for VersionedEventWrapper<R> where
    <R as BattleRules>::Version: Unpin

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