Asynchronously flushes any pending changes to the index file Due to Async nature, `Ok(())` does not guarantee that the changes are flushed. an `Err` value indicates it definitely did not succeed
(&self)
| 187 | /// Due to Async nature, `Ok(())` does not guarantee that the changes are flushed. |
| 188 | /// an `Err` value indicates it definitely did not succeed |
| 189 | pub fn async_flush(&self) -> io::Result<()> { |
| 190 | self.inner.flush_async() |
| 191 | } |
| 192 | |
| 193 | /// Asynchronously flushes the index entry starting at `offset` to the index file. |
| 194 | /// |
no outgoing calls
no test coverage detected