pub trait MixedFloor {
// Required method
fn mixed_floor(&self) -> Self;
}Required Methods§
Sourcefn mixed_floor(&self) -> Self
fn mixed_floor(&self) -> Self
Round Self up to the closest nteger.
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.