Trait num_bigint_dig::ToBigUint

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

A generic trait for converting a value to a BigUint.

Required Methods§

source

fn to_biguint(&self) -> Option<BigUint>

Converts the value of self to a BigUint.

Implementations on Foreign Types§

source§

impl ToBigUint for f32

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for f64

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for i8

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for i16

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for i32

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for i64

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for i128

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for isize

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for u8

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for u16

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for u32

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for u64

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for u128

source§

fn to_biguint(&self) -> Option<BigUint>

source§

impl ToBigUint for usize

source§

fn to_biguint(&self) -> Option<BigUint>

Implementors§