enum InFlightData {
Nothing,
DataFrame(Key),
Drop,
}Variants§
Nothing
There is no DATA frame in flight.
DataFrame(Key)
There is a DATA frame in flight belonging to the given stream.
Drop
There was a DATA frame, but the stream’s queue was since cleared.
Trait Implementations§
Source§impl Debug for InFlightData
impl Debug for InFlightData
Source§impl PartialEq for InFlightData
impl PartialEq for InFlightData
impl Eq for InFlightData
impl StructuralPartialEq for InFlightData
Auto Trait Implementations§
impl Freeze for InFlightData
impl RefUnwindSafe for InFlightData
impl Send for InFlightData
impl Sync for InFlightData
impl Unpin for InFlightData
impl UnwindSafe for InFlightData
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.