bucket_dl 0.3.0

A multithreaded downloader with the purpose of faster downloads by splitting it into several requests, rebuilding the data client-side.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12



#[derive(Clone, Eq, PartialEq, PartialOrd, Ord, Hash, Debug, Default)]
pub enum DownloadStatus {
    #[default]
    NotStarted,
    InProgress,
    Finished,
    Failed(String),
    Cancelled
}