pub struct TrustStats {
pub residual_ema: f64,
pub weight: f64,
}Expand description
Trust statistics for a single channel
Fields§
§residual_ema: f64EMA of absolute residuals
weight: f64Trust weight (normalized)
Implementations§
Source§impl TrustStats
impl TrustStats
Trait Implementations§
Source§impl Clone for TrustStats
impl Clone for TrustStats
Source§fn clone(&self) -> TrustStats
fn clone(&self) -> TrustStats
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 TrustStats
impl Debug for TrustStats
Source§impl Default for TrustStats
impl Default for TrustStats
Source§impl PartialEq for TrustStats
impl PartialEq for TrustStats
impl StructuralPartialEq for TrustStats
Auto Trait Implementations§
impl Freeze for TrustStats
impl RefUnwindSafe for TrustStats
impl Send for TrustStats
impl Sync for TrustStats
impl Unpin for TrustStats
impl UnsafeUnpin for TrustStats
impl UnwindSafe for TrustStats
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