Merge pull request #971 from matthiasbeyer/libimagstore/storeid-local-part-altering
Add fn StoreId::local_push() for altering the local part of a StoreId
This commit is contained in:
commit
f487550f81
1 changed files with 4 additions and 0 deletions
|
@ -123,6 +123,10 @@ impl StoreId {
|
||||||
&self.id
|
&self.id
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn local_push<P: AsRef<Path>>(&mut self, path: P) {
|
||||||
|
self.id.push(path)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Display for StoreId {
|
impl Display for StoreId {
|
||||||
|
|
Loading…
Reference in a new issue