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;
use rug::integer::TryFromIntegerError;
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]

[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 TryFromIntegerError
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TryFromIntegerError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for TryFromIntegerError
[src]

impl Debug for TryFromIntegerError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations