[][src]Trait num_bigint_dig::IntoBigInt

pub trait IntoBigInt {
    fn into_bigint(self) -> Option<BigInt>;
}

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

Required methods

fn into_bigint(self) -> Option<BigInt>

Converts the value of self to a BigInt.

Loading content...

Implementations on Foreign Types

impl IntoBigInt for isize[src]

impl IntoBigInt for i8[src]

impl IntoBigInt for i16[src]

impl IntoBigInt for i32[src]

impl IntoBigInt for i64[src]

impl IntoBigInt for i128[src]

impl IntoBigInt for usize[src]

impl IntoBigInt for u8[src]

impl IntoBigInt for u16[src]

impl IntoBigInt for u32[src]

impl IntoBigInt for u64[src]

impl IntoBigInt for u128[src]

impl IntoBigInt for f32[src]

impl IntoBigInt for f64[src]

Loading content...

Implementors

impl IntoBigInt for BigInt[src]

impl IntoBigInt for BigUint[src]

Loading content...