pub trait UnsignedPrimInt:
UnsignedPrimIntSealed
+ Copy
+ Eq
+ Not<Output = Self>
+ BitAnd<Output = Self>
+ BitOr<Output = Self>
+ BitAndAssign
+ BitOrAssign
+ Shl<usize, Output = Self>
+ Shr<usize, Output = Self>
+ From<bool> {
const NUM_BITS: usize = _;
// Provided methods
fn zero() -> Self { ... }
fn one() -> Self { ... }
}
Provided Associated Constants§
Provided Methods§
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.