pub enum TimerExecutionOutcome {
Success,
NoWork,
RetryableFailure,
InvariantFailure,
}Expand description
TimerExecutionOutcome
Variants§
Implementations§
Trait Implementations§
Source§impl CandidType for TimerExecutionOutcome
impl CandidType for TimerExecutionOutcome
Source§impl Clone for TimerExecutionOutcome
impl Clone for TimerExecutionOutcome
Source§fn clone(&self) -> TimerExecutionOutcome
fn clone(&self) -> TimerExecutionOutcome
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 TimerExecutionOutcome
Source§impl Debug for TimerExecutionOutcome
impl Debug for TimerExecutionOutcome
Source§impl<'de> Deserialize<'de> for TimerExecutionOutcome
impl<'de> Deserialize<'de> for TimerExecutionOutcome
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TimerExecutionOutcome
Source§impl PartialEq for TimerExecutionOutcome
impl PartialEq for TimerExecutionOutcome
Source§impl Serialize for TimerExecutionOutcome
impl Serialize for TimerExecutionOutcome
impl StructuralPartialEq for TimerExecutionOutcome
Auto Trait Implementations§
impl Freeze for TimerExecutionOutcome
impl RefUnwindSafe for TimerExecutionOutcome
impl Send for TimerExecutionOutcome
impl Sync for TimerExecutionOutcome
impl Unpin for TimerExecutionOutcome
impl UnsafeUnpin for TimerExecutionOutcome
impl UnwindSafe for TimerExecutionOutcome
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