pub type Product<Q1, Q2> = <Q1 as Mul<Q2>>::Output;
Constructs a product of quantities for one-off quantities.
let x: Product<Length<f64>, Time<f64>> = 20.0 * meters * seconds;