Expand description
The wtransport
-powered implementation of xwt_core
.
Re-exports§
pub use wtransport;
pub use xwt_core as core;
Modules§
- error_
codes - Conversions of the WebTransport error codes from and to the HTTP3 error codes.
Structs§
- Connection
- The
wtransport::Connection
newtype. - Datagram
- The
wtransport::datagram::Datagram
newtype. - Endpoint
- The
wtransport::Endpoint<Side>
newtype. - Incoming
Session - The
wtransport::endpoint::IncomingSession
newtype. - Opening
BiStream - The
wtransport::stream::OpeningBiStream
newtype. - Opening
UniStream - The
wtransport::stream::OpeningUniStream
newtype. - Recv
Stream - The
wtransport::RecvStream
newtype. - Send
Stream - The
wtransport::SendStream
newtype. - Session
Request - The
wtransport::endpoint::SessionRequest
newtype. - Stream
Error Code - The
u32
newtype.
Enums§
- Stream
Read Error - The read error.
- Stream
Write Error - The write error.
- Write
Aborted Error - An error that can occur while waiting for the write stream being aborted.
Type Aliases§
- Session
- Expose the
Session
as a type alias forConnection
, aswtransport
does not use the session terminology but it might be convenient for thexwt
users.