pub struct EventLoopClosed<T>(pub T);
Expand description
The error that is returned when an EventLoopProxy
attempts to wake up an EventLoop
that
no longer exists.
Contains the original event given to EventLoopProxy::send_event
.
Tuple Fields§
§0: T
Trait Implementations§
Source§impl<T: Clone> Clone for EventLoopClosed<T>
impl<T: Clone> Clone for EventLoopClosed<T>
Source§fn clone(&self) -> EventLoopClosed<T>
fn clone(&self) -> EventLoopClosed<T>
Returns a copy 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<T: Debug> Debug for EventLoopClosed<T>
impl<T: Debug> Debug for EventLoopClosed<T>
Source§impl<T> Display for EventLoopClosed<T>
impl<T> Display for EventLoopClosed<T>
Source§impl<T: Debug> Error for EventLoopClosed<T>
impl<T: Debug> Error for EventLoopClosed<T>
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<T: Hash> Hash for EventLoopClosed<T>
impl<T: Hash> Hash for EventLoopClosed<T>
Source§impl<T: PartialEq> PartialEq for EventLoopClosed<T>
impl<T: PartialEq> PartialEq for EventLoopClosed<T>
impl<T: Copy> Copy for EventLoopClosed<T>
impl<T: Eq> Eq for EventLoopClosed<T>
impl<T> StructuralPartialEq for EventLoopClosed<T>
Auto Trait Implementations§
impl<T> Freeze for EventLoopClosed<T>where
T: Freeze,
impl<T> RefUnwindSafe for EventLoopClosed<T>where
T: RefUnwindSafe,
impl<T> Send for EventLoopClosed<T>where
T: Send,
impl<T> Sync for EventLoopClosed<T>where
T: Sync,
impl<T> Unpin for EventLoopClosed<T>where
T: Unpin,
impl<T> UnwindSafe for EventLoopClosed<T>where
T: UnwindSafe,
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