[][src]Struct weasel::event::EventPrototype

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

A prototype for tentative events that are not yet verified.

Implementations

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

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

Returns the id of the event that caused this one.

pub fn set_origin(&mut self, origin: Option<EventId>)[src]

Sets the origin of this prototype.

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

Returns the event.

pub fn condition(&self) -> &Option<Condition<R>>[src]

Returns the prototype's acceptance condition.

pub fn set_condition(&mut self, condition: Option<Condition<R>>)[src]

Sets the acceptance condition of this prototype.

pub fn client_prototype(
    self,
    version: Version<R>,
    player: Option<PlayerId>
) -> ClientEventPrototype<R>
[src]

Consume this event prototype and returns a ClientEventPrototype instance of it.

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

Trait Implementations

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

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

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

The resulting type after dereferencing.

Auto Trait Implementations

impl<R> !RefUnwindSafe for EventPrototype<R>

impl<R> !Send for EventPrototype<R>

impl<R> !Sync for EventPrototype<R>

impl<R> Unpin for EventPrototype<R>

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