pub trait DataProvider<Key, Value> {
    fn get(key: &Key) -> Option<Value>;
}
Expand description

A simple trait to provide data

Required Methods§

Get data by key

Implementors§