pub enum ScheduleEventOutcome {
Enqueued,
Deduplicated,
Failed,
Skipped,
}Expand description
One durable scheduler enqueue attempt. Stores retain only the newest
SCHEDULE_EVENT_LIMIT records per schedule, so operator inspection is bounded.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ScheduleEventOutcome
impl Clone for ScheduleEventOutcome
Source§fn clone(&self) -> ScheduleEventOutcome
fn clone(&self) -> ScheduleEventOutcome
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 moreimpl Copy for ScheduleEventOutcome
Source§impl Debug for ScheduleEventOutcome
impl Debug for ScheduleEventOutcome
impl Eq for ScheduleEventOutcome
Source§impl PartialEq for ScheduleEventOutcome
impl PartialEq for ScheduleEventOutcome
impl StructuralPartialEq for ScheduleEventOutcome
Auto Trait Implementations§
impl Freeze for ScheduleEventOutcome
impl RefUnwindSafe for ScheduleEventOutcome
impl Send for ScheduleEventOutcome
impl Sync for ScheduleEventOutcome
impl Unpin for ScheduleEventOutcome
impl UnsafeUnpin for ScheduleEventOutcome
impl UnwindSafe for ScheduleEventOutcome
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