pub struct DiskSnapshotStore { /* private fields */ }Expand description
Disk-backed snapshot store. Writes are atomic via the .tmp + rename
dance in crate::atomic::write_atomic_bytes, with the parent directory
fsynced on success.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiskSnapshotStore
impl RefUnwindSafe for DiskSnapshotStore
impl Send for DiskSnapshotStore
impl Sync for DiskSnapshotStore
impl Unpin for DiskSnapshotStore
impl UnsafeUnpin for DiskSnapshotStore
impl UnwindSafe for DiskSnapshotStore
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