diff --git a/libimagstore/src/store.rs b/libimagstore/src/store.rs index 1385584b..59e95466 100644 --- a/libimagstore/src/store.rs +++ b/libimagstore/src/store.rs @@ -82,21 +82,6 @@ impl StoreEntry { fn is_borrowed(&self) -> bool { self.entry == StoreEntryPresence::Borrowed } - - /// Flush the entry to disk - fn set_entry(&mut self, entry: Entry) -> Result<()> { - unimplemented!() - } - - /// We borrow the entry - fn get_entry(&mut self) -> Result { - unimplemented!() - } - - /// We copy the entry - fn copy_entry(&mut self) -> Result { - unimplemented!() - } } /// The Store itself, through this object one can interact with IMAG's entries