pub enum Event {
    Established,
    AssociationLost {
        reason: AssociationError,
    },
    Stream(StreamEvent),
    DatagramReceived,
}
Expand description

Events of interest to the application

Variants

Established

The association was successfully established

AssociationLost

Fields

reason: AssociationError

Reason that the association was closed

The association was lost

Emitted if the peer closes the association or an error is encountered.

Stream(StreamEvent)

Stream events

DatagramReceived

One or more application datagrams have been received

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.