Trait IntLog2

Source
pub trait IntLog2: PrimInt {
    // Provided method
    fn log2(self) -> Self { ... }
}

Provided Methods§

Source

fn log2(self) -> Self

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<I: PrimInt> IntLog2 for I