pub trait ConstEval {
// Provided method
fn const_eval(&self) -> Option<i128> { ... }
}Provided Methods§
fn const_eval(&self) -> Option<i128>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".