pub struct StateEntry {
pub last_run_id: Option<String>,
pub last_run_path: Option<String>,
pub last_run_at: Option<DateTime<Utc>>,
pub last_status: RunStatus,
pub next_due: Option<NaiveDate>,
}Fields§
§last_run_id: Option<String>§last_run_path: Option<String>§last_run_at: Option<DateTime<Utc>>§last_status: RunStatus§next_due: Option<NaiveDate>Trait Implementations§
Source§impl Clone for StateEntry
impl Clone for StateEntry
Source§fn clone(&self) -> StateEntry
fn clone(&self) -> StateEntry
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 StateEntry
impl Debug for StateEntry
Source§impl<'de> Deserialize<'de> for StateEntry
impl<'de> Deserialize<'de> for StateEntry
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 StateEntry
impl RefUnwindSafe for StateEntry
impl Send for StateEntry
impl Sync for StateEntry
impl Unpin for StateEntry
impl UnsafeUnpin for StateEntry
impl UnwindSafe for StateEntry
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