proto_tower_http_2/
lib.rs

1use tokio::io::AsyncWriteExt;
2
3pub mod client;
4pub mod data;
5pub mod server;
6
7#[derive(Clone, Debug)]
8pub struct ProtoHttp2Config {
9    pub max_header_size: usize,
10    pub max_body_size: usize,
11    pub timeout: std::time::Duration,
12}