1/// The result of a division 2#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] 3pub enum Quotient<T> { 4 /// Result from division by 0 5 Nan, 6 /// Numeric value of the quotient 7 Number(T), 8}