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
Traits§
- Bidi
Stream - Optional trait to allow “splitting” a bidirectional stream into two sides.
- Connection
- Trait representing a QUIC connection.
- Error
- Trait that represent an error from the transport layer
- Open
Streams - Trait for opening outgoing streams
- Recv
Datagram Ext - Extends the
Connectiontrait for receiving datagrams - Recv
Stream - A trait describing the “receive” actions of a QUIC stream.
- Send
Datagram Ext - Extends the
Connectiontrait for sending datagrams - 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