Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Air/AirClient/
FileInfo.rs

1//! Information about a downloaded file.
2
3#[derive(Debug, Clone)]
4pub struct Struct {
5	pub file_path:String,
6
7	pub file_size:u64,
8
9	pub checksum:String,
10}