referrerpolicy=no-referrer-when-downgrade
frame_support::traits::dynamic_params

Trait Key

Source
pub trait Key {
    type Value;
    type WrappedValue: Into<Self::Value>;
}
Expand description

Key of a dynamic parameter.

Required Associated Types§

Source

type Value

The value that the key is parametrized with.

Source

type WrappedValue: Into<Self::Value>

An opaque representation of Self::Value.

Implementors§