pub struct PairedSpeculationUpdate {
pub race_decision: SpeculativeVariantDecision,
pub verdict: SpeculationVerdict,
pub observation: SpeculationObservation,
}Expand description
Result of recording one paired race.
Fields§
§race_decision: SpeculativeVariantDecisionWinning per-sample cache/autotune decision.
verdict: SpeculationVerdictAccumulated N2 verdict for the shape.
observation: SpeculationObservationObservation fed into the verdict.
Trait Implementations§
Source§impl Clone for PairedSpeculationUpdate
impl Clone for PairedSpeculationUpdate
Source§fn clone(&self) -> PairedSpeculationUpdate
fn clone(&self) -> PairedSpeculationUpdate
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 moreAuto Trait Implementations§
impl Freeze for PairedSpeculationUpdate
impl RefUnwindSafe for PairedSpeculationUpdate
impl Send for PairedSpeculationUpdate
impl Sync for PairedSpeculationUpdate
impl Unpin for PairedSpeculationUpdate
impl UnsafeUnpin for PairedSpeculationUpdate
impl UnwindSafe for PairedSpeculationUpdate
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