(&mut self)
| 2019 | |
| 2020 | impl Drop for QcowFile { |
| 2021 | fn drop(&mut self) { |
| 2022 | let _ = self.sync_caches(); |
| 2023 | if self.raw_file.file().is_writable() { |
| 2024 | let _ = self.header.set_dirty_bit(self.raw_file.file_mut(), false); |
| 2025 | } |
| 2026 | } |
| 2027 | } |
| 2028 | |
| 2029 | impl Read for QcowFile { |
nothing calls this directly
no test coverage detected