Struct Database

Source
pub struct Database { /* private fields */ }

Implementations§

Source§

impl Database

Source

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.

Source

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.

Source

pub fn put( &self, options: &WriteOptions, key: &dyn IntoLevelDBKey, value: &[u8], ) -> Result<(), Error>

Source

pub fn put_u8( &self, options: &WriteOptions, key: &[u8], value: &[u8], ) -> Result<(), Error>

Source

pub fn get( &self, options: &ReadOptions, key: &dyn IntoLevelDBKey, ) -> Result<Option<Vec<u8>>, Error>

Source

pub fn get_u8( &self, options: &ReadOptions, key: &[u8], ) -> Result<Option<Vec<u8>>, Error>

Source

pub fn delete( &self, options: &WriteOptions, key: &dyn IntoLevelDBKey, ) -> Result<(), Error>

Source

pub fn delete_u8(&self, options: &WriteOptions, key: &[u8]) -> Result<(), Error>

Trait Implementations§

Source§

impl Batch for Database

Source§

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

Source§

fn compact(&self, start: &'a [u8], limit: &'a [u8])

Source§

impl Debug for Database

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> Iterable<'a> for Database

Source§

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>

Returns an Iterator iterating over Keys only.
Source§

fn value_iter(&'a self, options: &ReadOptions) -> ValueIterator<'a>

Returns an Iterator iterating over Values only.
Source§

impl Snapshots for Database

Source§

fn snapshot(&self) -> Snapshot<'_>

Creates a snapshot and returns a struct representing it.
Source§

impl Send for Database

Source§

impl Sync for Database

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.