Builder: set the keep flag (legacy, now the default).
(mut self, keep: bool)
| 159 | |
| 160 | /// Builder: set the keep flag (legacy, now the default). |
| 161 | pub fn with_keep(mut self, keep: bool) -> Self { |
| 162 | self.keep = keep; |
| 163 | self |
| 164 | } |
| 165 | |
| 166 | /// Builder: set the recursive flag. |
| 167 | pub fn with_recursive(mut self, recursive: bool) -> Self { |
no outgoing calls