pub struct CronJobOptions {
pub id: Option<String>,
pub schedule: String,
pub action: CronAction,
pub overlap: Option<CronOverlap>,
}Expand description
Options for schedule_cron.
Fields§
§id: Option<String>Default: a fresh UUID.
schedule: String5/6/7-field cron expression OR an ISO-8601 one-shot timestamp.
action: CronAction§overlap: Option<CronOverlap>Default: CronOverlap::Allow.
Trait Implementations§
Source§impl Clone for CronJobOptions
impl Clone for CronJobOptions
Source§fn clone(&self) -> CronJobOptions
fn clone(&self) -> CronJobOptions
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for CronJobOptions
impl !UnwindSafe for CronJobOptions
impl Freeze for CronJobOptions
impl Send for CronJobOptions
impl Sync for CronJobOptions
impl Unpin for CronJobOptions
impl UnsafeUnpin for CronJobOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.