(mut self, algorithm: Algorithm)
| 148 | /// Set the diff algorithm. |
| 149 | #[must_use] |
| 150 | pub fn with_algorithm(mut self, algorithm: Algorithm) -> Self { |
| 151 | self.algorithm = algorithm; |
| 152 | self |
| 153 | } |
| 154 | |
| 155 | /// Set the default encoding for new files. |
| 156 | #[must_use] |
no outgoing calls