Set whether to use Replace operations.
(mut self, use_replace: bool)
| 126 | |
| 127 | /// Set whether to use Replace operations. |
| 128 | pub fn use_replace_ops(mut self, use_replace: bool) -> Self { |
| 129 | self.use_replace_ops = use_replace; |
| 130 | self |
| 131 | } |
| 132 | |
| 133 | /// Set the text encoding. |
| 134 | pub fn encoding(mut self, encoding: Option<Encoding>) -> Self { |
no outgoing calls