pub enum EventQueueError {
QueueFull(EventPriority),
}Expand description
Event queue error.
Variants§
QueueFull(EventPriority)
Reliable queue is full and caller must apply backpressure.
Trait Implementations§
Source§impl Clone for EventQueueError
impl Clone for EventQueueError
Source§fn clone(&self) -> EventQueueError
fn clone(&self) -> EventQueueError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EventQueueError
Source§impl Debug for EventQueueError
impl Debug for EventQueueError
Source§impl Display for EventQueueError
impl Display for EventQueueError
impl Eq for EventQueueError
Source§impl Error for EventQueueError
impl Error for EventQueueError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for EventQueueError
impl PartialEq for EventQueueError
impl StructuralPartialEq for EventQueueError
Auto Trait Implementations§
impl Freeze for EventQueueError
impl RefUnwindSafe for EventQueueError
impl Send for EventQueueError
impl Sync for EventQueueError
impl Unpin for EventQueueError
impl UnsafeUnpin for EventQueueError
impl UnwindSafe for EventQueueError
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