1 2//! Information about file indexing. 3 4#[derive(Debug, Clone)] 5pub struct Struct { 6 pub files_indexed:u32, 7 8 pub total_size:u64, 9}