pub trait FrameId:
Debug
+ Clone
+ Copy
+ PartialEq
+ Eq
+ 'static {
const ID: u32;
const NAME: &'static str;
}Expand description
Trait for compile-time frame identification Each frame type must implement this to provide a unique identifier
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".