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::Connectionnewtype. - Datagram
- The
wtransport::datagram::Datagramnewtype. - Endpoint
- The
wtransport::Endpoint<Side>newtype. - Incoming
Session - The
wtransport::endpoint::IncomingSessionnewtype. - Opening
BiStream - The
wtransport::stream::OpeningBiStreamnewtype. - Opening
UniStream - The
wtransport::stream::OpeningUniStreamnewtype. - Recv
Stream - The
wtransport::RecvStreamnewtype. - Send
Stream - The
wtransport::SendStreamnewtype. - Session
Request - The
wtransport::endpoint::SessionRequestnewtype.
Enums§
- Read
Aborted Error - An error that can occur while waiting for the read stream being aborted.
- Stream
Finished Error - The error that occurs when stream is expected to be finished.
- 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
Sessionas a type alias forConnection, aswtransportdoes not use the session terminology but it might be convenient for thexwtusers.