pub trait Bitwise:
Atomic
+ And<Type = <Self as Atomic>::Type>
+ Nand<Type = <Self as Atomic>::Type>
+ Or<Type = <Self as Atomic>::Type>
+ Xor<Type = <Self as Atomic>::Type> { }Expand description
The trait for types implementing atomic bitwise operations
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".