pub trait SpecialValuesDeci {
// Required methods
fn pi(prec: u32) -> Self;
fn nan(prec: u32) -> Self;
fn inf(prec: u32) -> Self;
}
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.