pub trait RemMixed<Reductor>: Sized {
// Required method
fn rem_mixed(&self, reductor: &NonZero<Reductor>) -> Reductor;
}
Expand description
Support for calculating the remainder of two differently sized integers.
Required Methods§
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§
impl RemMixed<BoxedUint> for BoxedUint
Available on crate feature
alloc
only.