Format the stash reference (e.g., "stash@{0}").
(&self)
| 213 | impl StashEntry { |
| 214 | /// Format the stash reference (e.g., "stash@{0}"). |
| 215 | pub fn reference(&self) -> String { |
| 216 | format!("stash@{{{}}}", self.index) |
| 217 | } |
| 218 | |
| 219 | /// Format the stash entry for display. |
| 220 | /// |