pub trait Code:
Copy
+ Debug
+ Default
+ SupportedType {
const COMMAND_DOC: &'static str;
// Provided method
fn default_low_values() -> [Self; 128] { ... }
}Required Associated Constants§
const COMMAND_DOC: &'static str
Provided Methods§
fn default_low_values() -> [Self; 128]
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.