pub trait AtLeast32BitUnsigned: AtLeast32Bit + Unsigned + MultiplyRational { }
Expand description

A meta trait for arithmetic. Same as AtLeast32Bit, but also bounded to be unsigned.

Object Safety§

This trait is not object safe.

Implementors§

§

impl<T> AtLeast32BitUnsigned for T
where T: AtLeast32Bit + Unsigned + MultiplyRational,