Trait ckb_rocksdb::ops::MultiGetCF
source · pub trait MultiGetCF<R> {
// Required method
fn multi_get_cf_full<'a, K, I>(
&self,
keys_cf: I,
readopts: Option<&R>
) -> Vec<Result<Option<DBVector>, Error>>
where K: AsRef<[u8]>,
I: IntoIterator<Item = (&'a ColumnFamily, K)>;
// Provided methods
fn multi_get_cf<'a, K, I>(
&self,
keys_cf: I
) -> Vec<Result<Option<DBVector>, Error>>
where K: AsRef<[u8]>,
I: IntoIterator<Item = (&'a ColumnFamily, K)> { ... }
fn multi_get_cf_opt<'a, K, I>(
&self,
keys_cf: I,
readopts: &R
) -> Vec<Result<Option<DBVector>, Error>>
where K: AsRef<[u8]>,
I: IntoIterator<Item = (&'a ColumnFamily, K)> { ... }
}
Required Methods§
fn multi_get_cf_full<'a, K, I>( &self, keys_cf: I, readopts: Option<&R> ) -> Vec<Result<Option<DBVector>, Error>>where K: AsRef<[u8]>, I: IntoIterator<Item = (&'a ColumnFamily, K)>,
Provided Methods§
fn multi_get_cf<'a, K, I>( &self, keys_cf: I ) -> Vec<Result<Option<DBVector>, Error>>where K: AsRef<[u8]>, I: IntoIterator<Item = (&'a ColumnFamily, K)>,
fn multi_get_cf_opt<'a, K, I>( &self, keys_cf: I, readopts: &R ) -> Vec<Result<Option<DBVector>, Error>>where K: AsRef<[u8]>, I: IntoIterator<Item = (&'a ColumnFamily, K)>,
Object Safety§
This trait is not object safe.