Struct rug::float::ParseFloatError [] [src]

pub struct ParseFloatError { /* fields omitted */ }

An error which can be returned when parsing a Float.

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

Examples

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

Trait Implementations

impl Debug for ParseFloatError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for ParseFloatError
[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 ParseFloatError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations