pub trait Ceil {
// Required method
const fn ceil(self) -> Self;
}
Expand description
✅ Rounds the number toward positive infinity if the result is representable. If rounding would cause an overflow, returns the original value unchanged.
§Panics
This function never panics.
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.