pub struct Episode {
pub motif: MotifClass,
pub channel: Option<String>,
pub t_start: f64,
pub t_end: f64,
pub peak: f64,
pub ema_at_boundary: f64,
pub trust_sum: f64,
}Expand description
A single motif episode: a typed structural event with an explicit boundary. The CLI emits these as JSON; the paper figures plot them.
Fields§
§motif: MotifClass§channel: Option<String>§t_start: f64§t_end: f64§peak: f64Peak |residual| observed inside the episode (for ranking / plotting).
ema_at_boundary: f64EMA-smoothed residual at episode boundary (for traceability into the DSFB observer’s trust state).
trust_sum: f64Aggregate trust weight sum across channels at boundary (always 1.0 up to floating-point tolerance — included for audit).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Episode
impl<'de> Deserialize<'de> for Episode
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
Auto Trait Implementations§
impl Freeze for Episode
impl RefUnwindSafe for Episode
impl Send for Episode
impl Sync for Episode
impl Unpin for Episode
impl UnsafeUnpin for Episode
impl UnwindSafe for Episode
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