Returns all affected paths as string slices. Paths that are not valid UTF-8 are skipped. This is the format needed by `RecordOptions::paths` which takes `Vec `.
(&self)
| 931 | /// Paths that are not valid UTF-8 are skipped. This is the format |
| 932 | /// needed by `RecordOptions::paths` which takes `Vec<String>`. |
| 933 | pub fn all_path_strings(&self) -> Vec<String> { |
| 934 | self.all_paths() |
| 935 | .iter() |
| 936 | .filter_map(|p| p.to_str().map(|s| s.to_string())) |
| 937 | .collect() |
| 938 | } |
| 939 | |
| 940 | /// Merge another `TurnChanges` into this one. |
| 941 | /// |