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}