rusty-cat 0.2.0

Async HTTP client for resumable file upload and download.
Documentation
1
2
3
4
5
6
7
use std::collections::BTreeSet;

#[derive(Debug, Default)]
pub(crate) struct PutBlockSession {
    pub(crate) target_url: Option<String>,
    pub(crate) uploaded_blocks: BTreeSet<usize>,
}