pub enum TimerReconcileState {
Inactive,
Scheduled,
}Expand description
Desired volatile scheduling state during synchronous lifecycle reconciliation.
Variants§
Inactive
Retain an existing declaration but clear its live callbacks.
Scheduled
Ensure one authoritative wake-up exists.
Trait Implementations§
Source§impl Clone for TimerReconcileState
impl Clone for TimerReconcileState
Source§fn clone(&self) -> TimerReconcileState
fn clone(&self) -> TimerReconcileState
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 TimerReconcileState
Source§impl Debug for TimerReconcileState
impl Debug for TimerReconcileState
impl Eq for TimerReconcileState
Source§impl PartialEq for TimerReconcileState
impl PartialEq for TimerReconcileState
impl StructuralPartialEq for TimerReconcileState
Auto Trait Implementations§
impl Freeze for TimerReconcileState
impl RefUnwindSafe for TimerReconcileState
impl Send for TimerReconcileState
impl Sync for TimerReconcileState
impl Unpin for TimerReconcileState
impl UnsafeUnpin for TimerReconcileState
impl UnwindSafe for TimerReconcileState
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