(mut self, algorithm: Algorithm)
| 141 | /// Set the diff algorithm. |
| 142 | #[must_use] |
| 143 | pub fn with_algorithm(mut self, algorithm: Algorithm) -> Self { |
| 144 | self.algorithm = algorithm; |
| 145 | self |
| 146 | } |
| 147 | |
| 148 | /// Set the default encoding for new files. |
| 149 | #[must_use] |
no outgoing calls