num_modular

Trait ModularRefOps

Source
pub trait ModularRefOps: for<'r> ModularOps<&'r Self, &'r Self> + Sized { }
Expand description

Collection of operations similar to ModularOps, but takes operands with references

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.

Implementors§

Source§

impl<T> ModularRefOps for T
where T: for<'r> ModularOps<&'r T, &'r T>,