Trait 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.