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