pub trait Key<T> {
    type Target: AsRef<[u8]>;
    fn key(&self) -> Self::Target;
}
Expand description

Should be used to get database key associated with given value.

Associated Types

The db key associated with this value.

Required methods

Returns db key.

Implementations on Foreign Types

Implementors