Trait cfx_storage::storage_db::key_value_db::ReadImplByFamily
source · pub trait ReadImplByFamily<FamilyRepresentative: ?Sized>: KeyValueDbTypes {
// Required methods
fn get_impl(&self, key: &[u8]) -> Result<Option<Self::ValueType>>;
fn get_with_number_key_impl(
&self,
key: i64
) -> Result<Option<Self::ValueType>>;
}