pub struct DriftReport {
pub alignment_score: f64,
pub is_drifting: bool,
pub signal_scores: Vec<SignalScore>,
pub multi_agent_drift: Option<DriftMeter>,
}Expand description
Report of alignment drift detection.
Fields§
§alignment_score: f64Current alignment score (0.0-1.0)
is_drifting: boolWhether drift threshold has been breached
signal_scores: Vec<SignalScore>Per-signal scores
multi_agent_drift: Option<DriftMeter>Multi-agent drift measurement (populated when trajectory involves
multiple agents). Carries the composite divergence metric from
DriftMeter::compute().
Trait Implementations§
Source§impl Clone for DriftReport
impl Clone for DriftReport
Source§fn clone(&self) -> DriftReport
fn clone(&self) -> DriftReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for DriftReport
impl ComposeSchema for DriftReport
Source§impl Debug for DriftReport
impl Debug for DriftReport
Source§impl<'de> Deserialize<'de> for DriftReport
impl<'de> Deserialize<'de> for DriftReport
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
Source§impl Serialize for DriftReport
impl Serialize for DriftReport
Auto Trait Implementations§
impl Freeze for DriftReport
impl RefUnwindSafe for DriftReport
impl Send for DriftReport
impl Sync for DriftReport
impl Unpin for DriftReport
impl UnwindSafe for DriftReport
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