Add missing pub modifiers to Store impl
This commit is contained in:
parent
463c182bcc
commit
313a0f9d7e
1 changed files with 5 additions and 5 deletions
|
@ -92,23 +92,23 @@ pub struct Store {
|
|||
}
|
||||
|
||||
impl Store {
|
||||
fn create(&self, entry: Entry) -> Result<()> {
|
||||
pub fn create(&self, entry: Entry) -> Result<()> {
|
||||
unimplemented!();
|
||||
}
|
||||
|
||||
fn retrieve<'a>(&'a self, id: StoreId) -> Result<FileLockEntry<'a>> {
|
||||
pub fn retrieve<'a>(&'a self, id: StoreId) -> Result<FileLockEntry<'a>> {
|
||||
unimplemented!();
|
||||
}
|
||||
|
||||
fn update<'a>(&'a self, entry: FileLockEntry<'a>) -> Result<()> {
|
||||
pub fn update<'a>(&'a self, entry: FileLockEntry<'a>) -> Result<()> {
|
||||
unimplemented!();
|
||||
}
|
||||
|
||||
fn retrieve_copy(&self, id: StoreId) -> Result<Entry> {
|
||||
pub fn retrieve_copy(&self, id: StoreId) -> Result<Entry> {
|
||||
unimplemented!();
|
||||
}
|
||||
|
||||
fn delete(&self, id: StoreId) -> Result<()> {
|
||||
pub fn delete(&self, id: StoreId) -> Result<()> {
|
||||
unimplemented!();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue