GrepMatch

Type Alias GrepMatch 

Source
pub type GrepMatch = SearchMatch;
Expand description

Match from grep search

Aliased Type§

pub struct GrepMatch {
    pub file_path: String,
    pub line_number: usize,
    pub line_content: String,
    pub column_range: Option<(usize, usize)>,
}

Fields§

§file_path: String§line_number: usize§line_content: String§column_range: Option<(usize, usize)>