(&mut self)
| 30 | |
| 31 | impl BootcTmpfilesGeneration { |
| 32 | fn increment(&mut self) { |
| 33 | // SAFETY: We shouldn't ever wrap here |
| 34 | self.0 = self.0.checked_add(1).unwrap(); |
| 35 | } |
| 36 | |
| 37 | fn path(&self) -> Utf8PathBuf { |
| 38 | format!("{TMPFILESD}/{BOOTC_GENERATED_PREFIX}-{}.conf", self.0).into() |
no outgoing calls