1 2 3 4 5 6 7 8
//! Implementations of async readers for downloads //! //! Mostly for interfacing with other libraries. pub use bytes_async_reader::*; pub use random_access_reader::*; mod bytes_async_reader; mod random_access_reader;