Skip to main content

Mountain/Air/AirClient/
FileResult.rs

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	pub size:u64,
9	pub match_preview:String,
10	pub line_number:u32,
11}