Function get_file_from_tar_by_reader_async

Source
pub async fn get_file_from_tar_by_reader_async<P, R>(
    file_name_in_tar: P,
    reader: R,
) -> Result<(Vec<u8>, Option<String>), FetchError>
where P: AsRef<Path>, R: AsyncRead + Unpin,