fn is_number(self) -> boolfn is_other(self) -> boolfn domain(self) -> u64fn range(self) -> i64fn set_range(&mut self, range: i64)fn mantissa(self) -> i64fn is_negative(self) -> boolfn negate(self) -> Quantityfn add(self, _: Quantity) -> Quantityfn sub(self, _: Quantity) -> Quantityfn multiply(self, _: Quantity) -> Quantityfn divide(self, _: Quantity) -> Quantityfn less_than(self, _: Quantity) -> boolfn greater_than(self, _: Quantity) -> boolfn to_string(self) -> Stringfn to_float(self) -> f64fn to_u64(self) -> u64impl QuantityMath for Quantity[src]fn is_number(self) -> bool[src]fn is_other(self) -> bool[src]fn domain(self) -> u64[src]fn range(self) -> i64[src]fn set_range(&mut self, range: i64)[src]fn mantissa(self) -> i64[src]fn negate(self) -> Quantity[src]fn is_negative(self) -> bool[src]fn to_string(self) -> String[src]fn to_float(self) -> f64[src]fn to_u64(self) -> u64[src]fn add(self, other: Quantity) -> Quantity[src]fn sub(self, other: Quantity) -> Quantity[src]fn multiply(self, other: Quantity) -> Quantity[src]fn divide(self, other: Quantity) -> Quantity[src]fn less_than(self, other: Quantity) -> bool[src]fn greater_than(self, other: Quantity) -> bool[src]