pub enum CFRunLoopRunResult {
Finished = 1,
Stopped = 2,
TimedOut = 3,
HandledSource = 4,
}
Variants§
Trait Implementations§
source§impl Clone for CFRunLoopRunResult
impl Clone for CFRunLoopRunResult
source§fn clone(&self) -> CFRunLoopRunResult
fn clone(&self) -> CFRunLoopRunResult
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 Debug for CFRunLoopRunResult
impl Debug for CFRunLoopRunResult
source§impl PartialEq for CFRunLoopRunResult
impl PartialEq for CFRunLoopRunResult
source§fn eq(&self, other: &CFRunLoopRunResult) -> bool
fn eq(&self, other: &CFRunLoopRunResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for CFRunLoopRunResult
impl StructuralPartialEq for CFRunLoopRunResult
Auto Trait Implementations§
impl RefUnwindSafe for CFRunLoopRunResult
impl Send for CFRunLoopRunResult
impl Sync for CFRunLoopRunResult
impl Unpin for CFRunLoopRunResult
impl UnwindSafe for CFRunLoopRunResult
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