pub struct GroupState {
pub envelope: f32,
pub trust_weight: f32,
pub count: u8,
}Expand description
Per-group HRET trust state.
Fields§
§envelope: f32EMA envelope s_g tracking mean |r| within the group.
trust_weight: f32Last computed group trust weight w_g.
count: u8Running channel count accumulator (used in mean computation).
Trait Implementations§
Source§impl Clone for GroupState
impl Clone for GroupState
Source§fn clone(&self) -> GroupState
fn clone(&self) -> GroupState
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 GroupState
impl Debug for GroupState
Source§impl Default for GroupState
impl Default for GroupState
impl Copy for GroupState
Auto Trait Implementations§
impl Freeze for GroupState
impl RefUnwindSafe for GroupState
impl Send for GroupState
impl Sync for GroupState
impl Unpin for GroupState
impl UnsafeUnpin for GroupState
impl UnwindSafe for GroupState
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