1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! HPACK ヘッダー圧縮 (RFC 7541) //! //! HTTP/2 で使用される HPACK ヘッダー圧縮のエンコード/デコードを提供する。 pub mod decoder; pub mod dynamic_table; pub mod encoder; pub mod huffman; pub mod integer; pub mod table; pub use decoder::Decoder; pub use dynamic_table::DynamicTable; pub use encoder::Encoder; pub use table::HeaderField;