block_util: Implement asynchronous traits for RAW disk file

This provides the implementation of DiskFile and AsyncIo for the RAW
file format.

Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
Sebastien Boeuf
2021-01-20 10:55:39 +01:00
committed by Rob Bradford
parent 30033bdaea
commit 23e3b022eb
2 changed files with 171 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ extern crate log;
extern crate serde_derive;
pub mod async_io;
pub mod raw_async;
#[cfg(feature = "io_uring")]
use io_uring::Probe;