pub struct DscdEvent {
pub id: u64,
pub time_index: u64,
pub module_id: u32,
pub residual_state: String,
pub trust: f64,
pub echo_slope: f64,
pub entropy_density: f64,
pub structural_level: f64,
}Expand description
DSCD event node exported for causal graph and scaling analyses.
EVENT TYPE NOTE:
This is the canonical event struct written to graph_events.csv. It
carries event/time indices, trust, and ADD-derived structure.
Fields§
§id: u64§time_index: u64§module_id: u32§residual_state: String§trust: f64§echo_slope: f64§entropy_density: f64§structural_level: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for DscdEvent
impl RefUnwindSafe for DscdEvent
impl Send for DscdEvent
impl Sync for DscdEvent
impl Unpin for DscdEvent
impl UnsafeUnpin for DscdEvent
impl UnwindSafe for DscdEvent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more