1 2 3 4 5 6 7 8
use crate::http::{Method, Protocol, u31::U31}; #[derive(Debug)] pub(crate) struct InitialServerStreamRemote { pub(crate) method: Method, pub(crate) protocol: Option<Protocol>, pub(crate) stream_id: U31, }