Trait DatabaseLookup

Source
pub trait DatabaseLookup: DatabaseKeyPrefix {
    type Record: DatabaseRecord;
}
Expand description

A key that can be used to query one or more DatabaseRecord Extends DatabaseKeyPrefix to prepend the key’s prefix.

Required Associated Types§

Implementors§

Source§

impl DatabaseLookup for ClientBackupKeyPrefix

Source§

impl DatabaseLookup for AltDbPrefixTestPrefix

Source§

impl DatabaseLookup for DbPrefixTestPrefix

Source§

impl DatabaseLookup for DbPrefixTestPrefixV0

Source§

impl DatabaseLookup for PercentPrefixTestPrefix

Source§

impl<Record> DatabaseLookup for Record

Source§

type Record = Record