pub struct FileBdSeqStore { /* private fields */ }Expand description
A file-backed bdSeq store. Writes atomically (temp file + rename) to a durable path (unlike Tahu’s OS temp dir).
Implementations§
Trait Implementations§
Source§impl BdSeqStore for FileBdSeqStore
impl BdSeqStore for FileBdSeqStore
Source§impl Clone for FileBdSeqStore
impl Clone for FileBdSeqStore
Source§fn clone(&self) -> FileBdSeqStore
fn clone(&self) -> FileBdSeqStore
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FileBdSeqStore
impl RefUnwindSafe for FileBdSeqStore
impl Send for FileBdSeqStore
impl Sync for FileBdSeqStore
impl Unpin for FileBdSeqStore
impl UnsafeUnpin for FileBdSeqStore
impl UnwindSafe for FileBdSeqStore
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