1#![allow(non_snake_case)] 2 3//! Result of a file search. 4 5#[derive(Debug, Clone)] 6pub struct Struct { 7 pub path:String, 8 9 pub size:u64, 10 11 pub match_preview:String, 12 13 pub line_number:u32, 14}