pub enum Rejected {
Duplicate,
Overflow,
Late,
ForeignSsrc,
}Expand description
Why a packet was not stored.
Variants§
Duplicate
The same sequence number is already buffered.
Overflow
The buffer is full and this packet did not displace anything.
Late
The position has already been released; emitting it now would be out of order.
ForeignSsrc
The packet belongs to a different stream.
Trait Implementations§
impl Copy for Rejected
impl Eq for Rejected
impl StructuralPartialEq for Rejected
Auto Trait Implementations§
impl Freeze for Rejected
impl RefUnwindSafe for Rejected
impl Send for Rejected
impl Sync for Rejected
impl Unpin for Rejected
impl UnsafeUnpin for Rejected
impl UnwindSafe for Rejected
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