pub struct TraceabilityEntry {Show 17 fields
pub event_id: String,
pub features: Vec<String>,
pub feature_role: String,
pub group_name: String,
pub run_index: usize,
pub timestamp: String,
pub label: i8,
pub residual: f64,
pub residual_values: Vec<f64>,
pub sign: TraceabilitySign,
pub motif: String,
pub grammar: String,
pub semantic: String,
pub policy: String,
pub rationale: String,
pub chain: String,
pub integration_mode: String,
}Fields§
§event_id: String§features: Vec<String>§feature_role: String§group_name: String§run_index: usize§timestamp: String§label: i8§residual: f64Primary residual scalar (normalized). Kept for backward compatibility.
residual_values: Vec<f64>Full residual value vector for this event (one entry per feature in features).
Use this field when iterating over multi-feature episodes.
sign: TraceabilitySign§motif: String§grammar: String§semantic: String§policy: String§rationale: String§chain: String§integration_mode: StringTrait Implementations§
Source§impl Clone for TraceabilityEntry
impl Clone for TraceabilityEntry
Source§fn clone(&self) -> TraceabilityEntry
fn clone(&self) -> TraceabilityEntry
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 Debug for TraceabilityEntry
impl Debug for TraceabilityEntry
Source§impl PartialEq for TraceabilityEntry
impl PartialEq for TraceabilityEntry
Source§impl Serialize for TraceabilityEntry
impl Serialize for TraceabilityEntry
impl StructuralPartialEq for TraceabilityEntry
Auto Trait Implementations§
impl Freeze for TraceabilityEntry
impl RefUnwindSafe for TraceabilityEntry
impl Send for TraceabilityEntry
impl Sync for TraceabilityEntry
impl Unpin for TraceabilityEntry
impl UnsafeUnpin for TraceabilityEntry
impl UnwindSafe for TraceabilityEntry
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