(mut self, all: bool)
| 126 | /// When true, ignores the paths filter and records all modified files. |
| 127 | #[must_use] |
| 128 | pub fn with_all(mut self, all: bool) -> Self { |
| 129 | self.all = all; |
| 130 | self |
| 131 | } |
| 132 | |
| 133 | /// Set the diff algorithm. |
| 134 | #[must_use] |
no outgoing calls