pub struct StreamPriorityRange {
pub least: i32,
pub greatest: i32,
}
Expand description
Struct representing a range of stream priorities.
By convention, lower numbers imply greater priorities. The range of meaningful stream priorities
is given by [greatest, least]
- that is (numerically), greatest <= least
.
Fields§
§least: i32
The least stream priority
greatest: i32
The greatest stream priority
Trait Implementations§
Source§impl Clone for StreamPriorityRange
impl Clone for StreamPriorityRange
Source§fn clone(&self) -> StreamPriorityRange
fn clone(&self) -> StreamPriorityRange
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 moreSource§impl Debug for StreamPriorityRange
impl Debug for StreamPriorityRange
Source§impl Hash for StreamPriorityRange
impl Hash for StreamPriorityRange
Source§impl PartialEq for StreamPriorityRange
impl PartialEq for StreamPriorityRange
impl Eq for StreamPriorityRange
impl StructuralPartialEq for StreamPriorityRange
Auto Trait Implementations§
impl Freeze for StreamPriorityRange
impl RefUnwindSafe for StreamPriorityRange
impl Send for StreamPriorityRange
impl Sync for StreamPriorityRange
impl Unpin for StreamPriorityRange
impl UnwindSafe for StreamPriorityRange
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