pub trait TrailingZeros {
    fn trailing_zeros(&self) -> u32;
}
Expand description

Implemented by integer types that allow counting the number of trailing zeroes.

Required Methods

Returns the number of trailing zeroes in the binary representation of self.

Implementations on Foreign Types

Implementors