Add fn StoreId::local_push() for altering the local part of a StoreId
This commit is contained in:
parent
bc95c5615d
commit
5b8c138922
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