pub trait IntoBigInt {
    // Required method
    fn into_bigint(self) -> Option<BigInt>;
}
Expand description

A generic trait for converting a value to a BigInt, consuming the value.

Required Methods§

source

fn into_bigint(self) -> Option<BigInt>

Converts the value of self to a BigInt.

Implementations on Foreign Types§

source§

impl IntoBigInt for u128

source§

impl IntoBigInt for u16

source§

impl IntoBigInt for i32

source§

impl IntoBigInt for i64

source§

impl IntoBigInt for f32

source§

impl IntoBigInt for usize

source§

impl IntoBigInt for i16

source§

impl IntoBigInt for f64

source§

impl IntoBigInt for i128

source§

impl IntoBigInt for u8

source§

impl IntoBigInt for isize

source§

impl IntoBigInt for u64

source§

impl IntoBigInt for i8

source§

impl IntoBigInt for u32

Implementors§