pub trait Value {
const VALUE: u32;
}
Expand description
A u32 value, wrapped in a trait because we don’t yet have const generics.
Required Associated Constants§
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.