(mut self, algorithm: Algorithm)
| 133 | /// Set the diff algorithm. |
| 134 | #[must_use] |
| 135 | pub fn with_algorithm(mut self, algorithm: Algorithm) -> Self { |
| 136 | self.algorithm = algorithm; |
| 137 | self |
| 138 | } |
| 139 | |
| 140 | /// Set the default encoding for new files. |
| 141 | #[must_use] |
no outgoing calls