pub type Quotient<Q1, Q2> = <Q1 as Div<Q2>>::Output;
Constructs a quotient of two quantities for one-off quantities.
let x: Quotient<Length<f64>, Time<f64>> = 10.0 * meters / seconds;