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>>;
}

Required Methods§

source

fn get_impl(&self, key: &[u8]) -> Result<Option<Self::ValueType>>

source

fn get_with_number_key_impl(&self, key: i64) -> Result<Option<Self::ValueType>>

Implementors§

source§

impl<T: ReadImplFamily<FamilyRepresentative = KvdbSqlite<ValueType>> + KvdbSqliteRefDestructureTrait + KeyValueDbTypes<ValueType = ValueType>, ValueType: DbValueType + ValueRead + ValueReadImpl<<ValueType as ValueRead>::Kind>> ReadImplByFamily<KvdbSqlite<ValueType>> for T