pub struct Cron {
pub exec_times: Option<i64>,
pub name: Option<String>,
pub next: Option<String>,
pub prev: Option<String>,
pub schedule: Option<String>,
}
Expand description
Cron : Cron represents a Cron task
Fields§
§exec_times: Option<i64>
§name: Option<String>
§next: Option<String>
§prev: Option<String>
§schedule: Option<String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Cron
impl<'de> Deserialize<'de> for Cron
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
impl StructuralPartialEq for Cron
Auto Trait Implementations§
impl Freeze for Cron
impl RefUnwindSafe for Cron
impl Send for Cron
impl Sync for Cron
impl Unpin for Cron
impl UnwindSafe for Cron
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