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§
type Record: DatabaseRecord
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".