pub enum InterventionOutcome {
Inactive,
Applied,
Missing,
Failed {
message: String,
},
}Expand description
Actual per-operation application outcome, independent of generation success.
Variants§
Inactive
The phase/prediction was not selected by this operation’s schedule.
Applied
The replacement/effective routes were passed downstream.
Missing
The scheduled point was unexpectedly absent from the forward pass.
Failed
This operation failed; earlier operations or cache work may already have run.
Trait Implementations§
Source§impl Clone for InterventionOutcome
impl Clone for InterventionOutcome
Source§fn clone(&self) -> InterventionOutcome
fn clone(&self) -> InterventionOutcome
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 InterventionOutcome
impl Debug for InterventionOutcome
Source§impl<'de> Deserialize<'de> for InterventionOutcome
impl<'de> Deserialize<'de> for InterventionOutcome
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 InterventionOutcome
Source§impl PartialEq for InterventionOutcome
impl PartialEq for InterventionOutcome
Source§impl Serialize for InterventionOutcome
impl Serialize for InterventionOutcome
impl StructuralPartialEq for InterventionOutcome
Auto Trait Implementations§
impl Freeze for InterventionOutcome
impl RefUnwindSafe for InterventionOutcome
impl Send for InterventionOutcome
impl Sync for InterventionOutcome
impl Unpin for InterventionOutcome
impl UnsafeUnpin for InterventionOutcome
impl UnwindSafe for InterventionOutcome
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