(mut self, all: bool)
| 134 | /// When true, ignores the paths filter and records all modified files. |
| 135 | #[must_use] |
| 136 | pub fn with_all(mut self, all: bool) -> Self { |
| 137 | self.all = all; |
| 138 | self |
| 139 | } |
| 140 | |
| 141 | /// Set the diff algorithm. |
| 142 | #[must_use] |
no outgoing calls