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::TryFromFloatError;
use rug::Rational;
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]

This method is soft-deprecated. Read more

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

impl Display for TryFromFloatError
[src]

Formats the value using the given formatter. Read more

impl Clone for TryFromFloatError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for TryFromFloatError
[src]

impl Debug for TryFromFloatError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations