pub struct ScheduleEvent {
pub event_id: u64,
pub schedule_id: String,
pub tick_ms: i64,
pub job_id: String,
pub outcome: ScheduleEventOutcome,
pub reason: String,
pub recorded_at_ms: i64,
}Fields§
§event_id: u64Store-generated monotonic sequence, used as the opaque pagination cursor.
schedule_id: String§tick_ms: i64§job_id: String§outcome: ScheduleEventOutcome§reason: StringStable, low-cardinality classification; never a raw backend error or payload.
recorded_at_ms: i64Populated from store time by the backend.
Trait Implementations§
Source§impl Clone for ScheduleEvent
impl Clone for ScheduleEvent
Source§fn clone(&self) -> ScheduleEvent
fn clone(&self) -> ScheduleEvent
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 ScheduleEvent
impl Debug for ScheduleEvent
impl Eq for ScheduleEvent
Source§impl PartialEq for ScheduleEvent
impl PartialEq for ScheduleEvent
impl StructuralPartialEq for ScheduleEvent
Auto Trait Implementations§
impl Freeze for ScheduleEvent
impl RefUnwindSafe for ScheduleEvent
impl Send for ScheduleEvent
impl Sync for ScheduleEvent
impl Unpin for ScheduleEvent
impl UnsafeUnpin for ScheduleEvent
impl UnwindSafe for ScheduleEvent
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