Skip to main content

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
10	pub total_size:u64,
11
12	pub downloaded:u64,
13
14	pub completed:bool,
15
16	pub error:String,
17}