Trait polkadot_sdk_frame::traits::dynamic_params::Key
pub trait Key {
type Value;
type WrappedValue: Into<Self::Value>;
}
Expand description
Key of a dynamic parameter.
Required Associated Types§
type Value
type Value
The value that the key is parametrized with.
type WrappedValue: Into<Self::Value>
type WrappedValue: Into<Self::Value>
An opaque representation of Self::Value
.
Object Safety§
This trait is not object safe.