[][src]Struct quinn_proto::EndpointEvent

pub struct EndpointEvent(_);

Events sent from a Connection to an Endpoint

Methods

impl EndpointEvent[src]

pub fn drained() -> Self[src]

Construct an event that indicating that a Connection will no longer emit events

Useful for notifying an Endpoint that a Connection has been destroyed outside of the usual state machine flow, e.g. when being dropped by the user.

pub fn is_drained(&self) -> bool[src]

Determine whether this is the last event a Connection will emit

Useful for determining when connection-related event loop state can be freed.

Trait Implementations

impl Debug for EndpointEvent[src]

Auto Trait Implementations

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