pub trait BitIndexOps: Sized {
type Output;
// Required methods
fn shl_index(self, index: BitIndex<Self>) -> Self::Output;
fn shr_index(self, index: BitIndex<Self>) -> Self::Output;
}Expand description
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".