[][src]Struct enet_sys::_ENetEvent

#[repr(C)]
pub struct _ENetEvent { pub type_: ENetEventType, pub peer: *mut ENetPeer, pub channelID: enet_uint8, pub data: enet_uint32, pub packet: *mut ENetPacket, }

An ENet event as returned by enet_host_service().

@sa enet_host_service

Fields

type_: ENetEventType

< type of the event

peer: *mut ENetPeer

< peer that generated a connect, disconnect or receive event

channelID: enet_uint8

< channel on the peer that generated the event, if appropriate

data: enet_uint32

< data associated with the event, if appropriate

packet: *mut ENetPacket

< packet associated with the event, if appropriate

Trait Implementations

impl Copy for _ENetEvent[src]

impl Clone for _ENetEvent[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for _ENetEvent

impl !Sync for _ENetEvent

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.