pub struct CronRun {
pub id: String,
pub task_id: String,
pub source_session_id: String,
pub started_at: i64,
pub finished_at: Option<i64>,
pub status: CronRunStatus,
pub session_id: Option<String>,
pub message: Option<String>,
}Expand description
One completed or active invocation of a scheduled task.
Fields§
§id: String§task_id: String§source_session_id: String§started_at: i64§finished_at: Option<i64>§status: CronRunStatus§session_id: Option<String>§message: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for CronRun
impl<'de> Deserialize<'de> for CronRun
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 Eq for CronRun
impl StructuralPartialEq for CronRun
Auto Trait Implementations§
impl Freeze for CronRun
impl RefUnwindSafe for CronRun
impl Send for CronRun
impl Sync for CronRun
impl Unpin for CronRun
impl UnsafeUnpin for CronRun
impl UnwindSafe for CronRun
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