Available on crate feature
h3 only.Expand description
QUIC Transport traits
This module includes traits and types meant to allow being generic over any QUIC implementation.
Structs§
- Invalid
Stream Id - Invalid StreamId, for example because it’s too large
- Stream
Id - Identifier for a stream
- Write
Buf - Wrap frames to encode their header on the stack before sending them on the wire
Enums§
- Connection
Error Incoming - Error type to communicate that the quic connection was closed
- Stream
Error Incoming - Error type to communicate that the stream was closed
Traits§
- Bidi
Stream - Optional trait to allow “splitting” a bidirectional stream into two sides.
- Connection
- Trait representing a QUIC connection.
- Open
Streams - Trait for opening outgoing streams
- Recv
Stream - A trait describing the “receive” actions of a QUIC stream.
- Send
Stream - A trait describing the “send” actions of a QUIC stream.
- Send
Stream Unframed - Allows sending unframed pure bytes to a stream. Similar to
AsyncWrite