pub struct UnblockedSection {
pub stream_id: u64,
pub headers: Vec<(Bytes, Bytes)>,
}Available on crate feature
h3 only.Expand description
A field section that was buffered as blocked and has since been decoded after an encoder stream update.
Fields§
§stream_id: u64The stream the encoded field section was received on.
headers: Vec<(Bytes, Bytes)>The decoded header list.
Trait Implementations§
Source§impl Clone for UnblockedSection
impl Clone for UnblockedSection
Source§fn clone(&self) -> UnblockedSection
fn clone(&self) -> UnblockedSection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UnblockedSection
impl Debug for UnblockedSection
impl Eq for UnblockedSection
Source§impl PartialEq for UnblockedSection
impl PartialEq for UnblockedSection
impl StructuralPartialEq for UnblockedSection
Auto Trait Implementations§
impl Freeze for UnblockedSection
impl RefUnwindSafe for UnblockedSection
impl Send for UnblockedSection
impl Sync for UnblockedSection
impl Unpin for UnblockedSection
impl UnsafeUnpin for UnblockedSection
impl UnwindSafe for UnblockedSection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more