[][src]Trait num_bigint_dig::IntoBigUint

pub trait IntoBigUint {
    pub fn into_biguint(self) -> Option<BigUint>;
}

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

Required methods

pub fn into_biguint(self) -> Option<BigUint>[src]

Converts the value of self to a BigUint.

Loading content...

Implementations on Foreign Types

impl IntoBigUint for isize[src]

impl IntoBigUint for i8[src]

impl IntoBigUint for i16[src]

impl IntoBigUint for i32[src]

impl IntoBigUint for i64[src]

impl IntoBigUint for i128[src]

impl IntoBigUint for usize[src]

impl IntoBigUint for u8[src]

impl IntoBigUint for u16[src]

impl IntoBigUint for u32[src]

impl IntoBigUint for u64[src]

impl IntoBigUint for u128[src]

impl IntoBigUint for f32[src]

impl IntoBigUint for f64[src]

Loading content...

Implementors

impl IntoBigUint for BigInt[src]

impl IntoBigUint for BigUint[src]

Loading content...