(&mut self, user_data: Option<u64>)
| 155 | } |
| 156 | |
| 157 | fn fsync(&mut self, user_data: Option<u64>) -> AsyncIoResult<()> { |
| 158 | self.vhdx_file.lock().unwrap().fsync_sync( |
| 159 | user_data, |
| 160 | &self.eventfd, |
| 161 | &mut self.completion_list, |
| 162 | ) |
| 163 | } |
| 164 | |
| 165 | fn next_completed_request(&mut self) -> Option<(u64, i32)> { |
| 166 | self.completion_list.pop_front() |
nothing calls this directly
no test coverage detected