(mut self, path: impl Into<String>)
| 117 | /// Add a single path to record. |
| 118 | #[must_use] |
| 119 | pub fn add_path(mut self, path: impl Into<String>) -> Self { |
| 120 | self.paths.push(path.into()); |
| 121 | self |
| 122 | } |
| 123 | |
| 124 | /// Set whether to record all changes. |
| 125 | /// |