pub struct SegmentFileStore { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for SegmentFileStore
impl Clone for SegmentFileStore
Source§fn clone(&self) -> SegmentFileStore
fn clone(&self) -> SegmentFileStore
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SegmentFileStore
impl Debug for SegmentFileStore
Source§impl IncrementalStore for SegmentFileStore
Available on non-WebAssembly only.
impl IncrementalStore for SegmentFileStore
Available on non-WebAssembly only.
fn name(&self) -> &str
fn load_metadata(&self) -> Result<Option<StorageMetadata>>
fn apply_transaction(&self, transaction: &StorageTransaction) -> Result<()>
fn get_node(&self, node_id: &str) -> Result<Option<NodeState>>
fn export_snapshot(&self, root: Option<&str>) -> Result<DatabaseSnapshot>
fn scan_direct_index_entries( &self, path: &str, direction: QueryDirection, scan: &DirectIndexScan, ) -> Result<Vec<DirectScalarIndexEntry>>
fn vacuum( &self, transaction: &StorageTransaction, ) -> Result<StorageVacuumReport>
fn list_direct_index_entries( &self, path: &str, direction: QueryDirection, ) -> Result<Vec<DirectScalarIndexEntry>>
Auto Trait Implementations§
impl Freeze for SegmentFileStore
impl RefUnwindSafe for SegmentFileStore
impl Send for SegmentFileStore
impl Sync for SegmentFileStore
impl Unpin for SegmentFileStore
impl UnwindSafe for SegmentFileStore
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> 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