pub enum RunLoopStopReason {
Terminal,
NoProgress,
AwaitingWait,
MaxTicks,
}Variants§
Trait Implementations§
Source§impl Clone for RunLoopStopReason
impl Clone for RunLoopStopReason
Source§fn clone(&self) -> RunLoopStopReason
fn clone(&self) -> RunLoopStopReason
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 moreSource§impl Debug for RunLoopStopReason
impl Debug for RunLoopStopReason
impl Eq for RunLoopStopReason
Source§impl PartialEq for RunLoopStopReason
impl PartialEq for RunLoopStopReason
Source§fn eq(&self, other: &RunLoopStopReason) -> bool
fn eq(&self, other: &RunLoopStopReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RunLoopStopReason
Auto Trait Implementations§
impl Freeze for RunLoopStopReason
impl RefUnwindSafe for RunLoopStopReason
impl Send for RunLoopStopReason
impl Sync for RunLoopStopReason
impl Unpin for RunLoopStopReason
impl UnsafeUnpin for RunLoopStopReason
impl UnwindSafe for RunLoopStopReason
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