pub trait TwentyFour: Sized {
// Required method
fn twenty_four() -> Self;
}
Expand description
Returns the constant value for the number twenty_four
Required Methods§
fn twenty_four() -> Self
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.