pub struct DifferentialOutcome {
pub observation_id: u64,
pub verdict: DifferentialVerdict,
pub pending_interactions: u64,
}Expand description
Structured advisory result returned by the separately built D23 runner.
Fields§
§observation_id: u64Monotonic calibration-ledger observation id.
verdict: DifferentialVerdictStable classifier spelling from the runner.
pending_interactions: u64Number of interaction flags still awaiting ground truth.
Trait Implementations§
Source§impl Clone for DifferentialOutcome
impl Clone for DifferentialOutcome
Source§fn clone(&self) -> DifferentialOutcome
fn clone(&self) -> DifferentialOutcome
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 DifferentialOutcome
impl Debug for DifferentialOutcome
Source§impl PartialEq for DifferentialOutcome
impl PartialEq for DifferentialOutcome
Source§fn eq(&self, other: &DifferentialOutcome) -> bool
fn eq(&self, other: &DifferentialOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DifferentialOutcome
impl Eq for DifferentialOutcome
impl StructuralPartialEq for DifferentialOutcome
Auto Trait Implementations§
impl Freeze for DifferentialOutcome
impl RefUnwindSafe for DifferentialOutcome
impl Send for DifferentialOutcome
impl Sync for DifferentialOutcome
impl Unpin for DifferentialOutcome
impl UnsafeUnpin for DifferentialOutcome
impl UnwindSafe for DifferentialOutcome
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