pub trait Locate<K> {
    fn locate(key: K) -> Result<Self, Error>;
}
Expand description

Fetch desired entry.

Required Methods

Implementors