[][src]Enum naia_server::ServerEvent

pub enum ServerEvent<T> {
    Connection(UserKey),
    Disconnection(UserKey, User),
    Event(UserKey, T),
    Command(UserKeyActorKey, T),
    Tick,
}

An Event that is emitted as a result of some communication with a Client, or a Tick event

Variants

Connection(UserKey)

Occurs when a new Client has successfully established a connection with the Server

Disconnection(UserKey, User)

Occurs when the Server has lost connection to a Client, usually as the result of a timeout

Event(UserKey, T)

An Event emitted to the Server from a Client

Command(UserKeyActorKey, T)

An Command emitted to the Server from a Client

Tick

A Tick Event, the duration between Tick events is defined in the Config object passed to the Server on initialization

Auto Trait Implementations

impl<T> RefUnwindSafe for ServerEvent<T> where
    T: RefUnwindSafe

impl<T> Send for ServerEvent<T> where
    T: Send

impl<T> Sync for ServerEvent<T> where
    T: Sync

impl<T> Unpin for ServerEvent<T> where
    T: Unpin

impl<T> UnwindSafe for ServerEvent<T> where
    T: UnwindSafe

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