hyperdriver 0.12.3

The missing middle for Hyper - Servers and Clients with ergonomic APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Transport streams for connecting to remote servers.
//!
//! Transports are responsible for establishing a connection to a remote server, shuffling bytes back and forth,

#[cfg(target_family = "unix")]
pub mod unix;

pub use chateau::client::conn::transport::duplex;
#[cfg(feature = "tls")]
pub use chateau::client::conn::transport::tls;
pub use chateau::client::conn::transport::{Transport, TransportExt, tcp};