pub enum BackgroundTaskDispatchTrigger {
Startup,
Timer,
Wakeup,
}Expand description
Reason a dispatch loop is about to run an iteration.
Variants§
Startup
Initial run immediately after worker startup.
Timer
Regular timer-based polling.
Wakeup
Product wakeup signal, usually emitted after enqueueing a task.
Trait Implementations§
Source§impl Clone for BackgroundTaskDispatchTrigger
impl Clone for BackgroundTaskDispatchTrigger
Source§fn clone(&self) -> BackgroundTaskDispatchTrigger
fn clone(&self) -> BackgroundTaskDispatchTrigger
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 PartialEq for BackgroundTaskDispatchTrigger
impl PartialEq for BackgroundTaskDispatchTrigger
Source§fn eq(&self, other: &BackgroundTaskDispatchTrigger) -> bool
fn eq(&self, other: &BackgroundTaskDispatchTrigger) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BackgroundTaskDispatchTrigger
impl Eq for BackgroundTaskDispatchTrigger
impl StructuralPartialEq for BackgroundTaskDispatchTrigger
Auto Trait Implementations§
impl Freeze for BackgroundTaskDispatchTrigger
impl RefUnwindSafe for BackgroundTaskDispatchTrigger
impl Send for BackgroundTaskDispatchTrigger
impl Sync for BackgroundTaskDispatchTrigger
impl Unpin for BackgroundTaskDispatchTrigger
impl UnsafeUnpin for BackgroundTaskDispatchTrigger
impl UnwindSafe for BackgroundTaskDispatchTrigger
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.