pub async fn uncompress_archive_file_with_encoding<B, R, W>(
blocking_executor: B,
source: R,
target: W,
path: &str,
decode: DecodeCallback
) -> Result<usize>where
B: BlockingExecutor,
R: AsyncRead + Unpin,
W: AsyncWrite + Unpin,
Expand description
Async version of
uncompress_archive_file_with_encoding
(crate::
uncompress_archive_file_with_encoding).