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