pub enum DriverOutcome {
Continue,
Reschedule {
at: DateTime<Utc>,
config: Value,
},
Stopped,
}Variants§
Trait Implementations§
Source§impl Clone for DriverOutcome
impl Clone for DriverOutcome
Source§fn clone(&self) -> DriverOutcome
fn clone(&self) -> DriverOutcome
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 DriverOutcome
impl Debug for DriverOutcome
impl Eq for DriverOutcome
Source§impl PartialEq for DriverOutcome
impl PartialEq for DriverOutcome
impl StructuralPartialEq for DriverOutcome
Auto Trait Implementations§
impl Freeze for DriverOutcome
impl RefUnwindSafe for DriverOutcome
impl Send for DriverOutcome
impl Sync for DriverOutcome
impl Unpin for DriverOutcome
impl UnsafeUnpin for DriverOutcome
impl UnwindSafe for DriverOutcome
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