pub trait Uint:
Copy
+ Eq
+ Add<Output = Self>
+ Sub<Output = Self>
+ Sized
+ BitAndAssign
+ TryInto<usize> {
const BITS: usize;
const ZERO: Self;
const ONE: Self;
// Required method
fn trailing_zeros(self) -> Self;
}Expand description
Internal helper trait for BitsIter.
Required Associated Constants§
Required Methods§
Sourcefn trailing_zeros(self) -> Self
fn trailing_zeros(self) -> Self
Number of trailing zeroes.
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.