pub struct RotatingBufferAtCapacity(/* private fields */);
Expand description
RotatingBufferAtCapacity is a struct that represents an error. It is returned whenever there was an attempt to enqueue a RotatingBuffer despite it being at capacity. In this instance, the value given is returned to the user, and can be reclaimed using RotatingBufferAtCapacity::reclaim.
Implementations§
Trait Implementations§
Source§impl Debug for RotatingBufferAtCapacity
impl Debug for RotatingBufferAtCapacity
Auto Trait Implementations§
impl Freeze for RotatingBufferAtCapacity
impl RefUnwindSafe for RotatingBufferAtCapacity
impl Send for RotatingBufferAtCapacity
impl Sync for RotatingBufferAtCapacity
impl Unpin for RotatingBufferAtCapacity
impl UnwindSafe for RotatingBufferAtCapacity
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