UInt

Trait UInt 

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

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 + Roots + Display + Debug + From<u8> + Into<u128> + Hash + Send + Sync,