tur-rs 0.9.2

A relentless, high-concurrency download manager built for speed and efficiency. Tur uses dynamic work-stealing and aligned storage to saturate your bandwidth while maintaining a minuscule memory footprint. Inspired by the legends, built for the modern Rust ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
use std::future::Future;

use anyhow::Result;
pub type H3ChunkFuture = dyn Future<Output = Result<()>> + 'static;

pub struct H3Response {
    pub status: http::StatusCode,
    pub body: Vec<u8>,
}