pub trait Reporter {
// Required methods
fn report_match(&self, file_match: &FileMatch);
fn warn_matches_truncated(
&self,
total_match_count: usize,
shown_match_count: usize,
);
fn warn_no_search_pattern(&self, search_directory: &Path);
}Required Methods§
fn report_match(&self, file_match: &FileMatch)
fn warn_matches_truncated( &self, total_match_count: usize, shown_match_count: usize, )
fn warn_no_search_pattern(&self, search_directory: &Path)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".