[][src]Struct weasel::event::ClientEventPrototype

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

An event prototype sent by a client to a server that must be first verified before being processed.

Implementations

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

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

Returns the BattleRules's version of the event.

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 authenticate(&mut self, player: PlayerId)[src]

Authenticate this event with the identity of player.

Note: you can use this method to perform server-side authentication of events coming from a remote client.

pub fn player(&self) -> Option<PlayerId>[src]

Returns the player who fired this prototype.

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

Trait Implementations

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

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

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

The resulting type after dereferencing.

impl<R: BattleRules + 'static> From<ClientEventPrototype<R>> for FlatClientEvent<R>[src]

impl<R: BattleRules + 'static> From<FlatClientEvent<R>> for ClientEventPrototype<R>[src]

Auto Trait Implementations

impl<R> !RefUnwindSafe for ClientEventPrototype<R>

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

impl<R> !Sync for ClientEventPrototype<R>

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

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