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 i128

source§

impl IntoBigUint for f64

source§

impl IntoBigUint for isize

source§

impl IntoBigUint for i32

source§

impl IntoBigUint for i8

source§

impl IntoBigUint for usize

source§

impl IntoBigUint for u64

source§

impl IntoBigUint for u128

source§

impl IntoBigUint for f32

source§

impl IntoBigUint for i64

source§

impl IntoBigUint for u16

source§

impl IntoBigUint for u8

source§

impl IntoBigUint for i16

source§

impl IntoBigUint for u32

Implementors§