xwt-core 0.9.0

A common WebTransport interface for browser and native. Write once, run anywhere.
Documentation
1
2
3
4
5
6
7
#![allow(missing_docs)]

use super::connect;

pub type ConnectSessionFor<T> = ConnectingSessionFor<<T as connect::Connect>::Connecting>;

pub type ConnectingSessionFor<T> = <T as connect::Connecting>::Session;