pub struct StructuralEvent {
pub event_id: usize,
pub time_index: usize,
pub channel_id: usize,
pub latent_state: f64,
pub predicted_value: f64,
pub observed_value: f64,
pub residual: f64,
pub envelope: f64,
pub trust: f64,
pub regime_label: RegimeLabel,
}Fields§
§event_id: usize§time_index: usize§channel_id: usize§latent_state: f64§predicted_value: f64§observed_value: f64§residual: f64§envelope: f64§trust: f64§regime_label: RegimeLabelTrait Implementations§
Source§impl Clone for StructuralEvent
impl Clone for StructuralEvent
Source§fn clone(&self) -> StructuralEvent
fn clone(&self) -> StructuralEvent
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 StructuralEvent
impl RefUnwindSafe for StructuralEvent
impl Send for StructuralEvent
impl Sync for StructuralEvent
impl Unpin for StructuralEvent
impl UnsafeUnpin for StructuralEvent
impl UnwindSafe for StructuralEvent
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