Trait num_modular::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

Object Safety§

This trait is not object safe.

Implementors§

source§

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