Struct rug::integer::ParseIntegerError [] [src]

pub struct ParseIntegerError { /* fields omitted */ }

An error which can be returned when parsing an Integer.

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

Examples

use rug::Integer;
use rug::integer::ParseIntegerError;
// This string is not an integer.
let s = "something completely different (_!_!_)";
let error: ParseIntegerError = match Integer::parse_radix(s, 4) {
    Ok(_) => unreachable!(),
    Err(error) => error,
};
println!("Parse error: {}", error);

Trait Implementations

impl Debug for ParseIntegerError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for ParseIntegerError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl Display for ParseIntegerError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations