wreq-proto 0.1.0

protocol utilities for wreq
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Extensions for HTTP messages in wreq_proto.

mod h1_reason_phrase;
mod header_preserve;
mod informational;

pub use self::{
    h1_reason_phrase::ReasonPhrase,
    header_preserve::{on_preserve_header, OnPreserveHeaderCallback},
    informational::on_informational,
};
pub(crate) use self::{header_preserve::OnHeaderSort, informational::OnInformational};