pub trait RoundedFmod: RoundingContext {
// Required method
fn fmod<N1, N2>(&self, src1: &N1, src2: &N2) -> Self::Format
where N1: Real,
N2: Real;
}Expand description
Rounded fmod(x, y) for rounding contexts.
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.