Unsigned

Trait Unsigned 

Source
pub trait Unsigned:
    Add<Output = Self>
    + Sub<Output = Self>
    + BitAnd<Output = Self>
    + Not<Output = Self>
    + Sized
    + From<u8>
    + Eq
    + Debug
    + Display
    + Clone
    + Copy { }
Expand description

An unsigned trait that used by the utils.

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<U: Add<Output = Self> + Sub<Output = Self> + BitAnd<Output = Self> + Not<Output = Self> + Sized + From<u8> + Eq + Debug + Display + Clone + Copy> Unsigned for U