pub trait Shift:
Copy
+ Shl<usize, Output = Self>
+ Shr<usize, Output = Self> {
// Required method
fn shs(self, f: i8) -> Self;
}Expand description
Shift summary trait
Wrapping supports Sh{lr}<usize> only.
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.