Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Air/AirClient/
DownloadStreamChunk.rs

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