rusty-cat 0.1.1

Async HTTP client for resumable file upload and download.
Documentation
1
2
3
4
5
6
7
8
use crate::direction::Direction;

#[derive(Debug, Clone)]
pub struct TransferSnapshot {
    pub queued_groups: usize,
    pub active_groups: usize,
    pub active_keys: Vec<(Direction, String)>,
}