wtx 0.44.2

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
1
2
3
4
5
6
7
8
/// Auxiliary structures for streams or requests.
pub trait StreamAux: Sized {
  /// Initialization
  type Init;

  /// Creates a new instance with [`StreamAux::Init`] as well as with a request.
  fn stream_aux(init: Self::Init) -> crate::Result<Self>;
}