Rename path arguments to id
This commit is contained in:
parent
044c19f0cc
commit
418ab5b9eb
1 changed files with 3 additions and 3 deletions
|
@ -77,16 +77,16 @@ impl Store {
|
||||||
fn create(&self, entry: Entry) -> Result<()> {
|
fn create(&self, entry: Entry) -> Result<()> {
|
||||||
unimplemented!();
|
unimplemented!();
|
||||||
}
|
}
|
||||||
fn retrieve<'a>(&'a self, path: StoreId) -> Result<FileLockEntry<'a>> {
|
fn retrieve<'a>(&'a self, id: StoreId) -> Result<FileLockEntry<'a>> {
|
||||||
unimplemented!();
|
unimplemented!();
|
||||||
}
|
}
|
||||||
fn update<'a>(&'a self, entry: FileLockEntry<'a>) -> Result<()> {
|
fn update<'a>(&'a self, entry: FileLockEntry<'a>) -> Result<()> {
|
||||||
unimplemented!();
|
unimplemented!();
|
||||||
}
|
}
|
||||||
fn retrieve_copy(&self, path: StoreId) -> Result<Entry> {
|
fn retrieve_copy(&self, id: StoreId) -> Result<Entry> {
|
||||||
unimplemented!();
|
unimplemented!();
|
||||||
}
|
}
|
||||||
fn delete(&self, path: StoreId) -> Result<()> {
|
fn delete(&self, id: StoreId) -> Result<()> {
|
||||||
unimplemented!();
|
unimplemented!();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue