pub enum WorkerStoreEvent {
TaskReady(ReadyTask),
TaskCancelled(Uuid),
}Expand description
An event returned by the store.
Variants§
Trait Implementations§
Source§impl Clone for WorkerStoreEvent
impl Clone for WorkerStoreEvent
Source§fn clone(&self) -> WorkerStoreEvent
fn clone(&self) -> WorkerStoreEvent
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 moreAuto Trait Implementations§
impl Freeze for WorkerStoreEvent
impl RefUnwindSafe for WorkerStoreEvent
impl Send for WorkerStoreEvent
impl Sync for WorkerStoreEvent
impl Unpin for WorkerStoreEvent
impl UnsafeUnpin for WorkerStoreEvent
impl UnwindSafe for WorkerStoreEvent
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