fetch_hyper 0.3.4

Hyper-based HTTP transport utilities for fetch.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! All types involved in establishing and driving HTTP connections.

pub(crate) mod client_connector;
mod connect;
pub(crate) mod hyper_connector_adapter;
pub(crate) mod hyper_handler;
mod io;
pub(crate) mod tracked_stream;

pub use connect::Connect;
pub use io::HyperIo;