Struct rugrat::MutNumerDenom [] [src]

pub struct MutNumerDenom<'a>(pub &'a mut Integer, pub &'a mut Integer);

Used to borrow the numerator and denominator of a Rational number mutably.

The Rational number is canonicalized when the borrow ends. See the Rational::as_mut_numer_denom() method.

Trait Implementations

impl<'a> Drop for MutNumerDenom<'a>
[src]

A method called when the value goes out of scope. Read more