wtx 0.44.1

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::{
  http::{Method, Protocol},
  http2::u31::U31,
};

#[derive(Debug)]
pub(crate) struct InitialServerStreamRemote {
  pub(crate) method: Method,
  pub(crate) protocol: Option<Protocol>,
  pub(crate) stream_id: U31,
}