Struct rustdb::stg::SimpleFileStorage
source · pub struct SimpleFileStorage { /* private fields */ }Expand description
Simple implementation of Storage using std::fs::File.
Implementations§
Trait Implementations§
source§impl Storage for SimpleFileStorage
impl Storage for SimpleFileStorage
source§fn size(&self) -> u64
fn size(&self) -> u64
Get the size of the underlying storage.
Note : this is valid initially and after a commit but is not defined after write is called.
source§fn commit(&mut self, size: u64)
fn commit(&mut self, size: u64)
Finish write transaction, size is new size of underlying storage.
fn clone(&self) -> Box<dyn Storage>
Auto Trait Implementations§
impl RefUnwindSafe for SimpleFileStorage
impl Send for SimpleFileStorage
impl Sync for SimpleFileStorage
impl Unpin for SimpleFileStorage
impl UnwindSafe for SimpleFileStorage
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