xitca-http 0.2.1

http library for xitca
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Copied from <https://github.com/hyperium/h2>

mod decoder;
mod encoder;
mod header;
mod huffman;
mod table;

pub(super) use self::decoder::{Decoder, DecoderError};
pub(super) use self::encoder::Encoder;
pub(super) use self::header::Header;