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