pulith-fetch 0.2.0

HTTP downloading with streaming verification and atomic placement
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Download strategies and fetch implementations.

pub mod batch;
pub mod conditional;
pub mod fetcher;
pub mod multi_source;
pub mod resumable;
pub mod segmented;

pub use batch::{BatchDownloadJob, BatchFetcher, BatchOptions};
pub use conditional::{ConditionalFetcher, ConditionalOptions, RemoteMetadata};
pub use fetcher::{FetchReceipt, FetchSource, Fetcher};
pub use multi_source::MultiSourceFetcher;
pub use resumable::{DownloadCheckpoint, ResumableFetcher};
pub use segmented::{SegmentedFetcher, SegmentedOptions};