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, }