aioduct 0.2.0-alpha.1

Async-native HTTP client built directly on hyper 1.x — no hyper-util, no legacy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod chunk_download_local;
mod chunk_download_send;

pub use chunk_download_local::ChunkDownloadLocal;
pub use chunk_download_send::ChunkDownload;

/// Result of a parallel chunk download.
#[derive(Debug)]
pub struct ChunkDownloadResult {
    /// Total size of the downloaded file in bytes.
    pub total_size: u64,
    /// The reassembled file data.
    pub data: bytes::Bytes,
}