wtx 0.43.0

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

  /// Creates a new instance with [`ConnAux::Init`].
  fn conn_aux(init: Self::Init) -> crate::Result<Self>;
}