Skip to main content

ToBigUint

Trait ToBigUint 

Source
trait ToBigUint {
    // Required method
    fn to_biguint(&self) -> BigUint;
}
Expand description

Converts types to a BigUint

Required Methods§

Source

fn to_biguint(&self) -> BigUint

Converts a vector of bits in little endian to a BigUint

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl ToBigUint for Vec<bool>

Implementors§