Trait ethcore::db::Key[][src]

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

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

impl Key<FlatBlockTraces> for H256
[src]

impl Key<PendingTransition> for H256
[src]

Implementors