Struct rug::integer::TryFromIntegerError[][src]

pub struct TryFromIntegerError { /* fields omitted */ }

An error which can be returned when a checked conversion from Integer fails.

Examples

use rug::integer::TryFromIntegerError;
use rug::Integer;
use std::convert::TryFrom;
// This is negative and cannot be converted to u32.
let i = Integer::from(-5);
let error: TryFromIntegerError = match u32::try_from(&i) {
    Ok(_) => unreachable!(),
    Err(error) => error,
};
println!("Error: {}", error);

Trait Implementations

impl Error for TryFromIntegerError
[src]

This method is soft-deprecated. Read more

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

impl Display for TryFromIntegerError
[src]

Formats the value using the given formatter. Read more

impl Clone for TryFromIntegerError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for TryFromIntegerError
[src]

impl Debug for TryFromIntegerError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations