pub trait NumericOpsTS:
NumericOps
+ Send
+ Sync { }Expand description
A thread-safe version of NumericOps.
This trait extends NumericOps with Send + Sync bounds, making it suitable
for use in concurrent and parallel computations where data needs to be
safely shared across threads.
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.