Trait num_bigint_dig::IntoBigUint

source ·
pub trait IntoBigUint {
    // Required method
    fn into_biguint(self) -> Option<BigUint>;
}
Expand description

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

Required Methods§

source

fn into_biguint(self) -> Option<BigUint>

Converts the value of self to a BigUint.

Implementations on Foreign Types§

source§

impl IntoBigUint for f32

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for f64

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for i8

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for i16

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for i32

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for i64

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for i128

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for isize

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for u8

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for u16

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for u32

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for u64

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for u128

source§

fn into_biguint(self) -> Option<BigUint>

source§

impl IntoBigUint for usize

source§

fn into_biguint(self) -> Option<BigUint>

Implementors§