pub enum TimerTrigger {
Cancel,
Periodic(u64),
Relative(u64),
}Variants§
Cancel
Remove the event’s timer setting.
Periodic(u64)
Trigger the event periodically.
Tuple Fields
Relative(u64)
Trigger the event one time.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TimerTrigger
impl RefUnwindSafe for TimerTrigger
impl Send for TimerTrigger
impl Sync for TimerTrigger
impl Unpin for TimerTrigger
impl UnwindSafe for TimerTrigger
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