pub struct DriftReport {
pub timelines: Vec<BeliefTimeline>,
pub stability: f32,
pub likely_to_change: bool,
}Expand description
Full drift detection report.
Fields§
§timelines: Vec<BeliefTimeline>Timelines showing belief evolution.
stability: f32Overall stability score (0.0 = highly unstable, 1.0 = perfectly stable).
likely_to_change: boolWhether the topic is likely to change again based on historical patterns.
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 moreAuto Trait Implementations§
impl Freeze for DriftReport
impl RefUnwindSafe for DriftReport
impl Send for DriftReport
impl Sync for DriftReport
impl Unpin for DriftReport
impl UnsafeUnpin 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