UInt

Trait UInt 

Source
pub trait UInt:
    PrimInt
    + Unsigned
    + Display
    + Debug
    + Roots
    + Send
    + Sync
    + From<u32>
    + Into<u128> { }

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> UInt for T
where T: PrimInt + Unsigned + Display + Debug + Roots + Send + Sync + From<u32> + Into<u128>,