pub struct Avg {
pub sums: HashMap<Vec<Value>, f64>,
pub counts: HashMap<Vec<Value>, u64>,
}Fields§
§sums: HashMap<Vec<Value>, f64>§counts: HashMap<Vec<Value>, u64>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Avg
impl RefUnwindSafe for Avg
impl Send for Avg
impl Sync for Avg
impl Unpin for Avg
impl UnwindSafe for Avg
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