(&self)
| 376 | |
| 377 | impl Clone for RefCountedTempFile { |
| 378 | fn clone(&self) -> Self { |
| 379 | Self { |
| 380 | parent_temp_dir: Arc::clone(&self.parent_temp_dir), |
| 381 | tempfile: Arc::clone(&self.tempfile), |
| 382 | current_file_disk_usage: Arc::clone(&self.current_file_disk_usage), |
| 383 | disk_manager: Arc::clone(&self.disk_manager), |
| 384 | } |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | impl RefCountedTempFile { |
no outgoing calls