pub trait KnownConfigParam<'a> {
type Value;
type Wrapper: ConfigParamWrapper<Self::Value> + Store + Load<'a>;
const ID: u32;
}Expand description
Marker trait which is implemented for known config params.
Required Associated Constants§
Required Associated Types§
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.