pub struct PriorityFrame {
pub stream_id: u32,
pub exclusive: bool,
pub stream_dependency: u32,
pub weight: u8,
}Expand description
PRIORITY frame (RFC 9113 Section 6.3).
Fields§
§stream_id: u32§exclusive: bool§stream_dependency: u32§weight: u8Implementations§
Source§impl PriorityFrame
impl PriorityFrame
Trait Implementations§
Source§impl Clone for PriorityFrame
impl Clone for PriorityFrame
Source§fn clone(&self) -> PriorityFrame
fn clone(&self) -> PriorityFrame
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 moreAuto Trait Implementations§
impl Freeze for PriorityFrame
impl RefUnwindSafe for PriorityFrame
impl Send for PriorityFrame
impl Sync for PriorityFrame
impl Unpin for PriorityFrame
impl UnsafeUnpin for PriorityFrame
impl UnwindSafe for PriorityFrame
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