pub trait ParameterStore<KV: AggregratedKeyValue> {
// Required method
fn get<K>(key: K) -> Option<K::Value>
where K: Key + Into<<KV as AggregratedKeyValue>::AggregratedKey>,
<KV as AggregratedKeyValue>::AggregratedValue: TryInto<K::WrappedValue>;
}Required Methods§
fn get<K>(key: K) -> Option<K::Value>where
K: Key + Into<<KV as AggregratedKeyValue>::AggregratedKey>,
<KV as AggregratedKeyValue>::AggregratedValue: TryInto<K::WrappedValue>,
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.