pub enum TimerSchedulingMode {
Once,
AfterCompletion,
Deadline,
Retry,
Continuation,
}Expand description
TimerSchedulingMode
Variants§
Implementations§
Trait Implementations§
Source§impl CandidType for TimerSchedulingMode
impl CandidType for TimerSchedulingMode
Source§impl Clone for TimerSchedulingMode
impl Clone for TimerSchedulingMode
Source§fn clone(&self) -> TimerSchedulingMode
fn clone(&self) -> TimerSchedulingMode
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 TimerSchedulingMode
Source§impl Debug for TimerSchedulingMode
impl Debug for TimerSchedulingMode
Source§impl<'de> Deserialize<'de> for TimerSchedulingMode
impl<'de> Deserialize<'de> for TimerSchedulingMode
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 TimerSchedulingMode
Source§impl PartialEq for TimerSchedulingMode
impl PartialEq for TimerSchedulingMode
Source§impl Serialize for TimerSchedulingMode
impl Serialize for TimerSchedulingMode
impl StructuralPartialEq for TimerSchedulingMode
Auto Trait Implementations§
impl Freeze for TimerSchedulingMode
impl RefUnwindSafe for TimerSchedulingMode
impl Send for TimerSchedulingMode
impl Sync for TimerSchedulingMode
impl Unpin for TimerSchedulingMode
impl UnsafeUnpin for TimerSchedulingMode
impl UnwindSafe for TimerSchedulingMode
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