pub trait SampleTypeInteger:
SampleType
+ BitAnd<Output = Self>
+ BitOr<Output = Self>
+ BitXor<Output = Self>
+ Shl<Output = Self>
+ Shr<Output = Self>
+ BitAndAssign
+ BitOrAssign
+ BitXorAssign
+ ShlAssign
+ ShrAssign
+ Rem<Output = Self>
+ RemAssign
+ Not<Output = Self> { }Expand description
Integers can do &, |, ^
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.