pub trait BitwiseReverse {
// Required method
fn swap_bits(self) -> Self;
}
Expand description
Computes bit reversal by going bit by bit and setting the reverse position bit for the output.
Required 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.