pub struct CronDefinition {
pub name: String,
pub schedule: String,
pub timezone: Option<String>,
pub method: Option<String>,
pub payload: Option<Value>,
pub overlap_policy: String,
}Fields§
§name: String§schedule: String§timezone: Option<String>§method: Option<String>§payload: Option<Value>§overlap_policy: StringTrait Implementations§
Source§impl Clone for CronDefinition
impl Clone for CronDefinition
Source§fn clone(&self) -> CronDefinition
fn clone(&self) -> CronDefinition
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 CronDefinition
impl Debug for CronDefinition
Source§impl<'de> Deserialize<'de> for CronDefinition
impl<'de> Deserialize<'de> for CronDefinition
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
Auto Trait Implementations§
impl Freeze for CronDefinition
impl RefUnwindSafe for CronDefinition
impl Send for CronDefinition
impl Sync for CronDefinition
impl Unpin for CronDefinition
impl UnsafeUnpin for CronDefinition
impl UnwindSafe for CronDefinition
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