pub struct DispatchSummary {
pub dispatched: usize,
pub handled: usize,
pub transitioned: usize,
}Expand description
Aggregate result of an external dispatch and the queue work it triggered.
Fields§
§dispatched: usizeTotal number of events offered to the machine.
handled: usizeNumber reported as handled.
transitioned: usizeNumber that changed active state.
Trait Implementations§
Source§impl Clone for DispatchSummary
impl Clone for DispatchSummary
Source§fn clone(&self) -> DispatchSummary
fn clone(&self) -> DispatchSummary
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 DispatchSummary
Source§impl Debug for DispatchSummary
impl Debug for DispatchSummary
Source§impl Default for DispatchSummary
impl Default for DispatchSummary
Source§fn default() -> DispatchSummary
fn default() -> DispatchSummary
Returns the “default value” for a type. Read more
impl Eq for DispatchSummary
Source§impl PartialEq for DispatchSummary
impl PartialEq for DispatchSummary
impl StructuralPartialEq for DispatchSummary
Auto Trait Implementations§
impl Freeze for DispatchSummary
impl RefUnwindSafe for DispatchSummary
impl Send for DispatchSummary
impl Sync for DispatchSummary
impl Unpin for DispatchSummary
impl UnsafeUnpin for DispatchSummary
impl UnwindSafe for DispatchSummary
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