pub enum SchedulingRule {
Loop,
OnMessage,
Periodic(PeriodLengthInUsec),
OnExternalEvent,
}Variants§
Trait Implementations§
Source§impl Clone for SchedulingRule
impl Clone for SchedulingRule
Source§fn clone(&self) -> SchedulingRule
fn clone(&self) -> SchedulingRule
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SchedulingRule
impl Debug for SchedulingRule
impl Copy for SchedulingRule
Auto Trait Implementations§
impl Freeze for SchedulingRule
impl RefUnwindSafe for SchedulingRule
impl Send for SchedulingRule
impl Sync for SchedulingRule
impl Unpin for SchedulingRule
impl UnwindSafe for SchedulingRule
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