Trait cosmwasm_std::Fraction [−][src]
A fraction p/q with integers p and q.
p is called the numerator and q is called the denominator.
Required methods
fn numerator(&self) -> T[src]
Returns the numerator p
fn denominator(&self) -> T[src]
Returns the denominator q
fn inv(&self) -> Option<Self>[src]
Returns the multiplicative inverse q/p for fraction p/q.
If p is zero, None is returned.