Mountain/Air/AirClient/DownloadStreamChunk.rs
1#![allow(non_snake_case)]
2
3//! Single chunk of data from a streaming download. Carries the binary
4//! payload plus progress + completion metadata.
5
6#[derive(Debug, Clone)]
7pub struct Struct {
8 pub data:Vec<u8>,
9 pub total_size:u64,
10 pub downloaded:u64,
11 pub completed:bool,
12 pub error:String,
13}