async_zip2/tokio/read/
mod.rs1use tokio_util::compat::Compat;
7
8#[cfg(feature = "tokio-fs")]
9pub mod fs;
10#[cfg(doc)]
11use crate::base;
12#[cfg(doc)]
13use tokio;
14
15pub type ZipEntryReader<'a, R, E> = crate::base::read::ZipEntryReader<'a, Compat<R>, E>;
17
18pub mod seek {
19    use tokio_util::compat::Compat;
21
22    #[cfg(doc)]
23    use crate::base;
24    #[cfg(doc)]
25    use tokio;
26
27    pub type ZipFileReader<R> = crate::base::read::seek::ZipFileReader<Compat<R>>;
29}
30
31pub mod stream {
32    #[cfg(doc)]
35    use crate::base;
36    #[cfg(doc)]
37    use tokio;
38    use tokio_util::compat::Compat;
39
40    pub type Reading<'a, R, E> = crate::base::read::stream::Reading<'a, Compat<R>, E>;
42    pub type Ready<R> = crate::base::read::stream::Ready<Compat<R>>;
44}