5
0
mirror of git://git.proxmox.com/git/pxar.git synced 2025-01-08 01:17:40 +03:00

hide accessor::aio for now

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2020-02-20 11:17:40 +01:00
parent 5cf335be1d
commit 9de9cca906
2 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,7 @@ use crate::poll_fn::poll_fn;
use crate::util;
use crate::{Entry, EntryKind};
#[doc(hidden)]
pub mod aio;
pub mod sync;

View File

@ -1,3 +1,5 @@
//! Asynchronous `pxar` random-access handling.
//!
//! Currently neither tokio nor futures have an `AsyncFileExt` variant.
//!
//! TODO: Implement a locking version for AsyncSeek+AsyncRead files?