1 2//! Single file result inside `SearchFilesResponse`. 3 4#[derive(Debug, Clone)] 5pub struct Struct { 6 pub path:String, 7 8 pub size:u64, 9 10 pub line:Option<u32>, 11 12 pub content:Option<String>, 13}