Struct rug::rational::TryFromFloatError [] [src]

pub struct TryFromFloatError { /* fields omitted */ }

An error which can be returned when a checked conversion from a floating-point number to a Rational number fails.

Examples

use rug::Rational;
use rug::rational::TryFromFloatError;
use std::convert::TryFrom;
// This is not finite and cannot be converted to Rational.
let inf = 1.0f32 / 0.0;
let error: TryFromFloatError = match Rational::try_from(inf) {
    Ok(_) => unreachable!(),
    Err(error) => error,
};
println!("Error: {}", error);

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

impl Clone for TryFromFloatError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for TryFromFloatError
[src]

impl Debug for TryFromFloatError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations