pub trait Floor: Copy {
// Required method
fn floor(self) -> Self;
}
Expand description
Defines the biggest integer equal or lower than the original value.
Required Methods§
Object Safety§
This trait is not object safe.
pub trait Floor: Copy {
// Required method
fn floor(self) -> Self;
}
Defines the biggest integer equal or lower than the original value.