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