pub struct TimerRun {
pub executed: usize,
pub uncaught: Vec<CallbackException>,
}Expand description
The result of one explicit timer checkpoint. At most one callback runs.
Fields§
§executed: usizeThe number of timer callbacks run: 0 or 1.
uncaught: Vec<CallbackException>Callback exceptions from the run callback, if it threw.
Trait Implementations§
impl Eq for TimerRun
impl StructuralPartialEq for TimerRun
Auto Trait Implementations§
impl Freeze for TimerRun
impl RefUnwindSafe for TimerRun
impl Send for TimerRun
impl Sync for TimerRun
impl Unpin for TimerRun
impl UnsafeUnpin for TimerRun
impl UnwindSafe for TimerRun
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