httpbis 0.9.1

Rust implementation of HTTP/2 protocol
Documentation
1
2
3
4
5
6
/// Who initiated a stream: locally or by peer
#[derive(Eq, PartialEq, Debug)]
pub enum InitWhere {
    Locally,
    Peer,
}