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.

Object Safety§

This trait is not object safe.

Implementors§