(&self, text: &str)
| 251 | } |
| 252 | |
| 253 | fn sanitize_output(&self, text: &str) -> String { |
| 254 | if !self.config.enable_output_sanitization { |
| 255 | return text.to_string(); |
| 256 | } |
| 257 | |
| 258 | self.sanitize_text(text) |
| 259 | } |
| 260 | |
| 261 | fn wipe(&self) { |
| 262 | let mut tainted = self.tainted_data.write().unwrap(); |