pub enum ScheduleExecutor {
SystemCron,
Commander,
Server,
}Expand description
Who is ticking this schedule.
Variants§
SystemCron
System cron/launchd (mur CLI solo mode)
Commander
Commander daemon tick loop
Server
Server-side tick
Trait Implementations§
Source§impl Clone for ScheduleExecutor
impl Clone for ScheduleExecutor
Source§fn clone(&self) -> ScheduleExecutor
fn clone(&self) -> ScheduleExecutor
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 moreSource§impl Debug for ScheduleExecutor
impl Debug for ScheduleExecutor
Source§impl Default for ScheduleExecutor
impl Default for ScheduleExecutor
Source§fn default() -> ScheduleExecutor
fn default() -> ScheduleExecutor
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScheduleExecutor
impl<'de> Deserialize<'de> for ScheduleExecutor
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
Source§impl PartialEq for ScheduleExecutor
impl PartialEq for ScheduleExecutor
Source§fn eq(&self, other: &ScheduleExecutor) -> bool
fn eq(&self, other: &ScheduleExecutor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScheduleExecutor
impl Serialize for ScheduleExecutor
impl StructuralPartialEq for ScheduleExecutor
Auto Trait Implementations§
impl Freeze for ScheduleExecutor
impl RefUnwindSafe for ScheduleExecutor
impl Send for ScheduleExecutor
impl Sync for ScheduleExecutor
impl Unpin for ScheduleExecutor
impl UnsafeUnpin for ScheduleExecutor
impl UnwindSafe for ScheduleExecutor
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