pub struct CorrectionEvent {
pub scenario: String,
pub source_level: usize,
pub target_level: usize,
pub anchor_time: usize,
pub corrected_time: usize,
pub delta_window: usize,
pub trust_weight: f64,
pub kernel_weight: f64,
pub compatibility: f64,
pub correction_magnitude: f64,
pub recursion_depth: usize,
pub iteration: usize,
}Fields§
§scenario: String§source_level: usize§target_level: usize§anchor_time: usize§corrected_time: usize§delta_window: usize§trust_weight: f64§kernel_weight: f64§compatibility: f64§correction_magnitude: f64§recursion_depth: usize§iteration: usizeTrait Implementations§
Source§impl Clone for CorrectionEvent
impl Clone for CorrectionEvent
Source§fn clone(&self) -> CorrectionEvent
fn clone(&self) -> CorrectionEvent
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 CorrectionEvent
impl Debug for CorrectionEvent
Auto Trait Implementations§
impl Freeze for CorrectionEvent
impl RefUnwindSafe for CorrectionEvent
impl Send for CorrectionEvent
impl Sync for CorrectionEvent
impl Unpin for CorrectionEvent
impl UnsafeUnpin for CorrectionEvent
impl UnwindSafe for CorrectionEvent
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