fn 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) -> Result<Quantity, ErrorType>fn sub(self, _: Quantity) -> Result<Quantity, ErrorType>fn multiply(self, _: Quantity) -> Result<Quantity, ErrorType>fn divide(self, _: Quantity) -> Result<Quantity, ErrorType>fn less_than(self, _: Quantity) -> Result<Quantity, ErrorType>fn greater_than(self, _: Quantity) -> Result<Quantity, ErrorType>fn less_than_equal(self, _: Quantity) -> Result<Quantity, ErrorType>fn greater_than_equal(self, _: Quantity) -> Result<Quantity, ErrorType>fn equal(self, _: Quantity) -> Result<Quantity, ErrorType>fn not_equal(self, _: Quantity) -> Result<Quantity, ErrorType>fn to_string(self) -> Stringfn format(self) -> Stringfn to_float(self) -> f64fn to_u64(self) -> u64impl QuantityMath for Quantity[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 format(self) -> String[src]fn to_float(self) -> f64[src]fn to_u64(self) -> u64[src]fn add(self, other: Quantity) -> Result<Quantity, ErrorType>[src]fn sub(self, other: Quantity) -> Result<Quantity, ErrorType>[src]fn multiply(self, other: Quantity) -> Result<Quantity, ErrorType>[src]fn divide(self, other: Quantity) -> Result<Quantity, ErrorType>[src]fn less_than(self, other: Quantity) -> Result<Quantity, ErrorType>[src]fn less_than_equal(self, other: Quantity) -> Result<Quantity, ErrorType>[src]fn greater_than_equal(self, other: Quantity) -> Result<Quantity, ErrorType>[src]fn greater_than(self, other: Quantity) -> Result<Quantity, ErrorType>[src]fn equal(self, other: Quantity) -> Result<Quantity, ErrorType>[src]fn not_equal(self, other: Quantity) -> Result<Quantity, ErrorType>[src]