Skip to main content

Mountain/Air/AirClient/
FileResult.rs

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