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§

Implementors§