pub trait NumOps:
Atomic
+ Add<Type = <Self as Atomic>::Type>
+ Sub<Type = <Self as Atomic>::Type>
+ Update<Type = <Self as Atomic>::Type>
+ Max<Type = <Self as Atomic>::Type>
+ Min<Type = <Self as Atomic>::Type> { }Expand description
The trait for types implementing atomic numeric operations
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".