pub enum EventStatus {
Solved,
Skipped,
BudgetRefused,
Errored,
}Expand description
What the orchestrator did with a single event.
Variants§
Solved
The SubLinear orchestrator ran and returned a top-k.
Skipped
The coherence gate decided the delta was too small to warrant
a solve. latency is the gate-probe cost only.
BudgetRefused
The caller-supplied PlanBudget refused this event’s
op-class. Iterator terminates after yielding this status.
Errored
The orchestrator returned an error. latency is partial.
Trait Implementations§
Source§impl Clone for EventStatus
impl Clone for EventStatus
Source§fn clone(&self) -> EventStatus
fn clone(&self) -> EventStatus
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 EventStatus
impl Debug for EventStatus
Source§impl PartialEq for EventStatus
impl PartialEq for EventStatus
Source§fn eq(&self, other: &EventStatus) -> bool
fn eq(&self, other: &EventStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EventStatus
impl Eq for EventStatus
impl StructuralPartialEq for EventStatus
Auto Trait Implementations§
impl Freeze for EventStatus
impl RefUnwindSafe for EventStatus
impl Send for EventStatus
impl Sync for EventStatus
impl Unpin for EventStatus
impl UnsafeUnpin for EventStatus
impl UnwindSafe for EventStatus
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