pub enum SignalWaitOutcome {
Satisfied(i64),
TimedOut(i64),
Cancelled(i64),
}Variants§
Trait Implementations§
Source§impl Clone for SignalWaitOutcome
impl Clone for SignalWaitOutcome
Source§fn clone(&self) -> SignalWaitOutcome
fn clone(&self) -> SignalWaitOutcome
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 SignalWaitOutcome
Source§impl Debug for SignalWaitOutcome
impl Debug for SignalWaitOutcome
impl Eq for SignalWaitOutcome
Source§impl PartialEq for SignalWaitOutcome
impl PartialEq for SignalWaitOutcome
impl StructuralPartialEq for SignalWaitOutcome
Auto Trait Implementations§
impl Freeze for SignalWaitOutcome
impl RefUnwindSafe for SignalWaitOutcome
impl Send for SignalWaitOutcome
impl Sync for SignalWaitOutcome
impl Unpin for SignalWaitOutcome
impl UnsafeUnpin for SignalWaitOutcome
impl UnwindSafe for SignalWaitOutcome
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