pub trait ArithApi { // Required method fn arith(&mut self, op: Arith); }
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".