Enum message_io::network::AdapterEvent[][src]

pub enum AdapterEvent<'a> {
    Added(EndpointResourceId),
    Data(Endpoint&'a [u8]),
    Removed(Endpoint),
}

Struct used to identify and event that an adapter has been produced. The upper layer can traduce this event into a crate::network::NetEvent that the user can manage easily.

Variants

The endpoint has been added (it implies a connection). It also contains the resource id of the listener that accepted this endpoint.

The endpoint has sent data that represents a message.

Removed(Endpoint)

The endpoint has been removed (it implies a disconnection).

Trait Implementations

impl<'a> Debug for AdapterEvent<'a>[src]

impl From<AdapterEvent<'_>> for NetEvent[src]

fn from(adapter_event: AdapterEvent<'_>) -> NetEvent[src]

Created a NetEvent from an AdapterEvent.

Auto Trait Implementations

impl<'a> RefUnwindSafe for AdapterEvent<'a>

impl<'a> Send for AdapterEvent<'a>

impl<'a> Sync for AdapterEvent<'a>

impl<'a> Unpin for AdapterEvent<'a>

impl<'a> UnwindSafe for AdapterEvent<'a>

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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