mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-25 02:20:58 -05:00
fix: Add missing traits
This commit is contained in:
parent
b7d412c20e
commit
77188df1a3
1 changed files with 4 additions and 0 deletions
|
@ -107,12 +107,14 @@ pub trait Report: Send + Sync {
|
|||
fn report(&self, msg: Message);
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug)]
|
||||
pub struct PrintSilent;
|
||||
|
||||
impl Report for PrintSilent {
|
||||
fn report(&self, _msg: Message) {}
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug)]
|
||||
pub struct PrintBrief;
|
||||
|
||||
impl Report for PrintBrief {
|
||||
|
@ -153,6 +155,7 @@ impl Report for PrintBrief {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug)]
|
||||
pub struct PrintLong;
|
||||
|
||||
impl Report for PrintLong {
|
||||
|
@ -222,6 +225,7 @@ fn print_long_correction(msg: Correction) {
|
|||
writeln!(handle, "{} |", line_indent).unwrap();
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug)]
|
||||
pub struct PrintJson;
|
||||
|
||||
impl Report for PrintJson {
|
||||
|
|
Loading…
Reference in a new issue