Struct parity_db::Db [−][src]
pub struct Db { /* fields omitted */ }
Implementations
impl Db
[src]
impl Db
[src]pub fn with_columns(path: &Path, num_columns: u8) -> Result<Db>
[src]
pub fn open(options: &Options) -> Result<Db>
[src]
Open the database with given
pub fn get(&self, col: u8, key: &[u8]) -> Result<Option<Vec<u8>>>
[src]
pub fn get_size(&self, col: u8, key: &[u8]) -> Result<Option<u32>>
[src]
pub fn commit<I, K>(&self, tx: I) -> Result<()> where
I: IntoIterator<Item = (u8, K, Option<Vec<u8>>)>,
K: AsRef<[u8]>,
[src]
I: IntoIterator<Item = (u8, K, Option<Vec<u8>>)>,
K: AsRef<[u8]>,