pub struct TickResult {
pub promoted_scheduled: usize,
pub promoted_retry_wait: usize,
pub dispatched: usize,
pub completed: usize,
pub engine_paused: bool,
}Expand description
Result of a single dispatch tick.
Fields§
§promoted_scheduled: usizeNumber of runs promoted from Scheduled to Ready.
promoted_retry_wait: usizeNumber of runs promoted from RetryWait to Ready.
dispatched: usizeNumber of runs selected and dispatched for execution.
completed: usizeNumber of runs that completed (terminal state).
engine_paused: boolWhether the engine is currently paused.
Trait Implementations§
Source§impl Clone for TickResult
impl Clone for TickResult
Source§fn clone(&self) -> TickResult
fn clone(&self) -> TickResult
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 TickResult
impl Debug for TickResult
Source§impl Default for TickResult
impl Default for TickResult
Source§fn default() -> TickResult
fn default() -> TickResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TickResult
impl RefUnwindSafe for TickResult
impl Send for TickResult
impl Sync for TickResult
impl Unpin for TickResult
impl UnsafeUnpin for TickResult
impl UnwindSafe for TickResult
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