Product

Type Alias Product 

Source
pub type Product<Q1, Q2> = <Q1 as Mul<Q2>>::Output;
Expand description

Constructs a product of quantities for one-off quantities.

let x: Product<Length<f64>, Time<f64>> = 20.0 * meters * seconds;