pub trait ShiftRight {
type ShiftedRight;
// Required method
fn shift_right(self) -> Self::ShiftedRight;
}Required Associated Types§
type ShiftedRight
Required Methods§
fn shift_right(self) -> Self::ShiftedRight
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".