pub enum DataStreamHeaderKind {
Subgroup(AnySubgroupHeader),
Fetch(AnyFetchHeader),
}Expand description
The kind of data stream header parsed from a unidirectional stream.
Variants§
Subgroup(AnySubgroupHeader)
Subgroup stream header.
Fetch(AnyFetchHeader)
Fetch response stream header.
Trait Implementations§
Source§impl Clone for DataStreamHeaderKind
impl Clone for DataStreamHeaderKind
Source§fn clone(&self) -> DataStreamHeaderKind
fn clone(&self) -> DataStreamHeaderKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DataStreamHeaderKind
impl RefUnwindSafe for DataStreamHeaderKind
impl Send for DataStreamHeaderKind
impl Sync for DataStreamHeaderKind
impl Unpin for DataStreamHeaderKind
impl UnsafeUnpin for DataStreamHeaderKind
impl UnwindSafe for DataStreamHeaderKind
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