(mut self, all: bool)
| 141 | /// When true, ignores the paths filter and records all modified files. |
| 142 | #[must_use] |
| 143 | pub fn with_all(mut self, all: bool) -> Self { |
| 144 | self.all = all; |
| 145 | self |
| 146 | } |
| 147 | |
| 148 | /// Set the diff algorithm. |
| 149 | #[must_use] |
no outgoing calls