snipgrep 0.1.0

Code Documentation Made Simple
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod console;
pub mod table;
use std::{
    collections::BTreeMap,
    path::{Path, PathBuf},
};

use crate::processor::InjectStatus;

pub trait ReporterOutput: Sync {
    fn start(&mut self) {}
    fn end(&mut self) {}
    fn report(&self, root_folder: &Path, result: &BTreeMap<PathBuf, InjectStatus>);
}