(path: &Path, suffix: &str)
| 240 | } |
| 241 | |
| 242 | fn with_suffix(path: &Path, suffix: &str) -> PathBuf { |
| 243 | let mut s: std::ffi::OsString = path.as_os_str().to_owned(); |
| 244 | s.push(suffix); |
| 245 | PathBuf::from(s) |
| 246 | } |
| 247 | |
| 248 | async fn read_journal_mode(cg: &crate::tracedecay::TraceDecay) -> Result<String> { |
| 249 | let mut rows = cg |