pub struct SumOfProducts {
pub products: Vec<f64>,
pub sum: f64,
}Expand description
Result of computing products and their sum.
Fields§
§products: Vec<f64>The product of each input row.
sum: f64The sum of all products.
Auto Trait Implementations§
impl Freeze for SumOfProducts
impl RefUnwindSafe for SumOfProducts
impl Send for SumOfProducts
impl Sync for SumOfProducts
impl Unpin for SumOfProducts
impl UnwindSafe for SumOfProducts
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