Enum quiche::h3::Event[][src]

pub enum Event {
    Headers {
        list: Vec<Header>,
        has_body: bool,
    },
    Data,
    Finished,
    Datagram,
    GoAway,
}

An HTTP/3 connection event.

Variants

Headers

Request/response headers were received.

Fields of Headers

list: Vec<Header>

The list of received header fields. The application should validate pseudo-headers and headers.

has_body: bool

Whether data will follow the headers on the stream.

Data

Data was received.

This indicates that the application can use the recv_body() method to retrieve the data from the stream.

Note that recv_body() will need to be called repeatedly until the Done value is returned, as the event will not be re-armed until all buffered data is read.

Finished

Stream was closed,

Datagram

DATAGRAM was received.

This indicates that the application can use the recv_dgram() method to retrieve the HTTP/3 DATAGRAM.

Note that recv_dgram() will need to be called repeatedly until the Done value is returned, as the event will not be re-armed until all buffered DATAGRAMs with the same flow ID are read.

GoAway

GOAWAY was received.

Trait Implementations

impl Clone for Event[src]

impl Debug for Event[src]

impl PartialEq<Event> for Event[src]

impl StructuralPartialEq for Event[src]

Auto Trait Implementations

impl RefUnwindSafe for Event

impl Send for Event

impl Sync for Event

impl Unpin for Event

impl UnwindSafe for Event

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.