Trait num_bigint_dig::IntoBigInt

source ·
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 f32

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for f64

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for i8

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for i16

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for i32

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for i64

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for i128

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for isize

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for u8

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for u16

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for u32

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for u64

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for u128

source§

fn into_bigint(self) -> Option<BigInt>

source§

impl IntoBigInt for usize

source§

fn into_bigint(self) -> Option<BigInt>

Implementors§