Struct WebTransportSession

Source
pub struct WebTransportSession { /* private fields */ }
Available on (crate features http1 or http2 or http3) and crate feature http3 and crate feature webtransport only.
Expand description

A WebTransport session handle.

This type provides access to bidirectional and unidirectional streams for a WebTransport session established over HTTP/3.

The session can be retrieved from the request extensions when handling a WebTransport CONNECT request.

§Example

async fn handle_webtransport(req: IncomingRequest) -> Result<Response<()>, std::convert::Infallible> {
    if let Some(session) = req.extensions().get::<WebTransportSession>() {
        // Handle WebTransport session
        tokio::spawn({
            let session = session.clone();
            async move {
                while let Ok(Some(accepted)) = session.accept_bi().await {
                    // Handle bidirectional streams
                }
            }
        });

        return Ok(Response::builder()
            .status(200)
            .body(())
            .unwrap());
    }

    Ok(Response::builder()
        .status(404)
        .body(())
        .unwrap())
}

Implementations§

Source§

impl WebTransportSession

Source

pub async fn accept_bi(&self) -> Result<Option<AcceptedBi>, StreamError>

Accept the next incoming bidirectional stream or request.

Returns None when the session is closed or no more streams are available.

§Example
async fn handle_session(session: WebTransportSession) {
    while let Ok(Some(accepted)) = session.accept_bi().await {
        match accepted {
            AcceptedBi::BidiStream(stream) => {
                // Handle raw bidirectional stream
            }
            AcceptedBi::Request(req, stream) => {
                // Handle HTTP request over WebTransport
            }
        }
    }
}
Source

pub async fn accept_uni( &self, ) -> Result<Option<(WebTransportStreamId, WebTransportRecvStream)>, ConnectionError>

Accept the next incoming unidirectional stream.

Returns None when the session is closed or no more streams are available.

Source

pub async fn open_bi( &self, ) -> Result<(WebTransportSendStream, WebTransportRecvStream), StreamError>

Open a new bidirectional stream.

§Example
let (mut send, mut recv) = session.open_bi().await?;
send.write(Bytes::from("Hello")).await?;
send.finish().await?;
Source

pub async fn open_uni(&self) -> Result<WebTransportSendStream, StreamError>

Open a new unidirectional stream.

§Example
let mut send = session.open_uni().await?;
send.write(Bytes::from("Hello")).await?;
send.finish().await?;
Source

pub fn session_id(&self) -> SessionId

Get the session ID for this WebTransport session.

Source

pub fn datagram_sender( &self, ) -> DatagramSender<<Connection as DatagramConnectionExt<Bytes>>::SendDatagramHandler, Bytes>

Get a datagram sender for sending datagrams over this session.

Datagrams are unreliable and unordered messages.

§Example
let mut sender = session.datagram_sender();
sender.send_datagram(Bytes::from("Hello"))?;
Source

pub fn datagram_reader( &self, ) -> DatagramReader<<Connection as DatagramConnectionExt<Bytes>>::RecvDatagramHandler>

Get a datagram reader for receiving datagrams over this session.

§Example
let mut reader = session.datagram_reader();
while let Ok(datagram) = reader.read_datagram().await {
    println!("Received: {} bytes", datagram.payload().len());
}

Trait Implementations§

Source§

impl Clone for WebTransportSession

Source§

fn clone(&self) -> WebTransportSession

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for WebTransportSession

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more