pub trait DbGet<C: OutputType> {
// Required method
fn get(&self, key: C) -> C::Output;
}Expand description
Abstracts over the get function provided by Db<S> and DbHandle<S> to avoid
providing get and get_db variants for each function.