pub struct EventQueueFullError;Expand description
Error when an operation cannot be performed because the event queue reaches its max capacity.
Trait Implementations§
Source§impl Clone for EventQueueFullError
impl Clone for EventQueueFullError
Source§fn clone(&self) -> EventQueueFullError
fn clone(&self) -> EventQueueFullError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EventQueueFullError
impl Debug for EventQueueFullError
Source§impl Display for EventQueueFullError
impl Display for EventQueueFullError
Source§impl Error for EventQueueFullError
impl Error for EventQueueFullError
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()
Auto Trait Implementations§
impl Freeze for EventQueueFullError
impl RefUnwindSafe for EventQueueFullError
impl Send for EventQueueFullError
impl Sync for EventQueueFullError
impl Unpin for EventQueueFullError
impl UnwindSafe for EventQueueFullError
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