pub struct NativeDB { /* private fields */ }
Expand description
A typed wrapper around RocksDB for storing native-only accessory state.
Internally, this is roughly just an Arc<SchemaDB>
.
Implementations§
Source§impl NativeDB
impl NativeDB
Sourcepub fn with_path(path: impl AsRef<Path>) -> Result<Self, Error>
pub fn with_path(path: impl AsRef<Path>) -> Result<Self, Error>
Opens a NativeDB
(backed by RocksDB) at the specified path.
The returned instance will be at the path {path}/native-db
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NativeDB
impl RefUnwindSafe for NativeDB
impl Send for NativeDB
impl Sync for NativeDB
impl Unpin for NativeDB
impl UnwindSafe for NativeDB
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more