Struct rug::rational::ParseRationalError[][src]

pub struct ParseRationalError { /* fields omitted */ }

An error which can be returned when parsing a Rational number.

See the Rational::parse_radix method for details on what strings are accepted.

Examples

use rug::rational::ParseRationalError;
use rug::Rational;
// This string is not a rational number.
let s = "something completely different (_!_!_)";
let error: ParseRationalError = match Rational::parse_radix(s, 4) {
    Ok(_) => unreachable!(),
    Err(error) => error,
};
println!("Parse error: {:?}", error);

Trait Implementations

impl Debug for ParseRationalError
[src]

Formats the value using the given formatter. Read more

impl Error for ParseRationalError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl Display for ParseRationalError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations