pub struct Database { /* private fields */ }
Implementations§
Source§impl Database
impl Database
Sourcepub fn open(name: &Path, options: &Options) -> Result<Database, Error>
pub fn open(name: &Path, options: &Options) -> Result<Database, Error>
Open a new database
If the database is missing, the behaviour depends on options.create_if_missing
.
The database will be created using the settings given in options
.
Sourcepub fn open_with_comparator<C: Comparator>(
name: &Path,
options: &Options,
comparator: C,
) -> Result<Database, Error>
pub fn open_with_comparator<C: Comparator>( name: &Path, options: &Options, comparator: C, ) -> Result<Database, Error>
Open a new database with a custom comparator
If the database is missing, the behaviour depends on options.create_if_missing
.
The database will be created using the settings given in options
.
The comparator must implement a total ordering over the keyspace.
For keys that implement Ord, consider the OrdComparator
.
pub fn put( &self, options: &WriteOptions, key: &dyn IntoLevelDBKey, value: &[u8], ) -> Result<(), Error>
pub fn put_u8( &self, options: &WriteOptions, key: &[u8], value: &[u8], ) -> Result<(), Error>
pub fn get( &self, options: &ReadOptions, key: &dyn IntoLevelDBKey, ) -> Result<Option<Vec<u8>>, Error>
pub fn get_u8( &self, options: &ReadOptions, key: &[u8], ) -> Result<Option<Vec<u8>>, Error>
pub fn delete( &self, options: &WriteOptions, key: &dyn IntoLevelDBKey, ) -> Result<(), Error>
pub fn delete_u8(&self, options: &WriteOptions, key: &[u8]) -> Result<(), Error>
Trait Implementations§
Source§impl Batch for Database
impl Batch for Database
Source§fn write(&self, options: &WriteOptions, batch: &WriteBatch) -> Result<(), Error>
fn write(&self, options: &WriteOptions, batch: &WriteBatch) -> Result<(), Error>
Write a batch to the database, ensuring success for all items or an error
Source§impl<'a> Compaction<'a> for Database
impl<'a> Compaction<'a> for Database
Source§impl<'a> Iterable<'a> for Database
impl<'a> Iterable<'a> for Database
Source§fn iter(&'a self, options: &ReadOptions) -> Iterator<'a> ⓘ
fn iter(&'a self, options: &ReadOptions) -> Iterator<'a> ⓘ
Return an Iterator iterating over (Key,Value) pairs
Source§fn keys_iter(&'a self, options: &ReadOptions) -> KeyIterator<'a> ⓘ
fn keys_iter(&'a self, options: &ReadOptions) -> KeyIterator<'a> ⓘ
Returns an Iterator iterating over Keys only.
Source§fn value_iter(&'a self, options: &ReadOptions) -> ValueIterator<'a> ⓘ
fn value_iter(&'a self, options: &ReadOptions) -> ValueIterator<'a> ⓘ
Returns an Iterator iterating over Values only.
impl Send for Database
impl Sync for Database
Auto Trait Implementations§
impl Freeze for Database
impl RefUnwindSafe for Database
impl Unpin for Database
impl UnwindSafe for Database
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more