pub enum ThreadNotification {
NoAction,
SetBits(u32),
Increment,
SetValueWithOverwrite(u32),
SetValueWithoutOverwrite(u32),
}Variants§
Trait Implementations§
Source§impl Clone for ThreadNotification
impl Clone for ThreadNotification
Source§fn clone(&self) -> ThreadNotification
fn clone(&self) -> ThreadNotification
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 ThreadNotification
impl Debug for ThreadNotification
impl Copy for ThreadNotification
Auto Trait Implementations§
impl Freeze for ThreadNotification
impl RefUnwindSafe for ThreadNotification
impl Send for ThreadNotification
impl Sync for ThreadNotification
impl Unpin for ThreadNotification
impl UnwindSafe for ThreadNotification
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