wreq-proto 0.2.2

Protocol utilities for wreq
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Lower-level client connection API.
//!
//! The types in this module are to provide a lower-level API based around a
//! single connection. Connecting to a host, pooling connections, and the like
//! are not handled at this level. This module provides the building blocks to
//! customize those things externally.

pub mod http1;
pub mod http2;

pub use super::dispatch::TrySendError;