Trait num::bigint::ToBigUint  
            
                [−]
            
        [src]
pub trait ToBigUint {
    fn to_biguint(&self) -> Option<BigUint>;
}A generic trait for converting a value to a BigUint.
Required Methods
fn to_biguint(&self) -> Option<BigUint>
Converts the value of self to a BigUint.