[][src]Trait rug::integer::UnsignedPrimitive

pub trait UnsignedPrimitive: SealedUnsignedPrimitive { }

Conversions between Integer and a slice of digits of this type are provided.

For conversion from digits to Integer, see Integer::from_digits and Integer::assign_digits. For conversion from Integer to digits, see Integer::significant_digits, Integer::to_digits, and Integer::write_digits.

This trait is sealed and cannot be implemented for more types; it is implemented for bool, u8, u16, u32, u64, u128 (conditional on compiler support), and usize.

Implementations on Foreign Types

impl UnsignedPrimitive for bool
[src]

impl UnsignedPrimitive for u8
[src]

impl UnsignedPrimitive for u16
[src]

impl UnsignedPrimitive for u32
[src]

impl UnsignedPrimitive for u64
[src]

impl UnsignedPrimitive for u128
[src]

impl UnsignedPrimitive for usize
[src]

Loading content...

Implementors

Loading content...