pub struct RunRecord {
pub scheduled_at: DateTime<Utc>,
pub started_at: DateTime<Utc>,
pub finished_at: DateTime<Utc>,
pub catch_up: bool,
pub status: RunStatus,
pub error: Option<String>,
}Fields§
§scheduled_at: DateTime<Utc>§started_at: DateTime<Utc>§finished_at: DateTime<Utc>§catch_up: bool§status: RunStatus§error: Option<String>Trait Implementations§
impl Eq for RunRecord
impl StructuralPartialEq for RunRecord
Auto Trait Implementations§
impl Freeze for RunRecord
impl RefUnwindSafe for RunRecord
impl Send for RunRecord
impl Sync for RunRecord
impl Unpin for RunRecord
impl UnsafeUnpin for RunRecord
impl UnwindSafe for RunRecord
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