pub struct Overrun;Expand description
SpscFrameRing::produce found the ring full (the consumer is behind), so
this call could not enqueue. For the canonical ISR producer, which attempts
each frame once and does not retry, that means the frame was dropped; it is
counted in SpscFrameRing::overruns. (A producer that instead retries the
same frame will see this per full-ring event, not per lost frame.)
Trait Implementations§
impl Copy for Overrun
impl Eq for Overrun
impl StructuralPartialEq for Overrun
Auto Trait Implementations§
impl Freeze for Overrun
impl RefUnwindSafe for Overrun
impl Send for Overrun
impl Sync for Overrun
impl Unpin for Overrun
impl UnsafeUnpin for Overrun
impl UnwindSafe for Overrun
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