1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
use std::fmt::Debug;
use crate::StateMachine;
pub trait ProtocolWatcher<SM: StateMachine> {
fn caught_non_critical_error(&mut self, when: When, err: SM::Err);
}
#[derive(Debug)]
pub enum When {
HandleIncoming,
Proceed,
}
pub struct BlindWatcher;
impl<SM> ProtocolWatcher<SM> for BlindWatcher
where
SM: StateMachine,
{
fn caught_non_critical_error(&mut self, _when: When, _err: SM::Err) {}
}
pub struct StderrWatcher;
impl<SM> ProtocolWatcher<SM> for StderrWatcher
where
SM: StateMachine,
SM::Err: Debug,
{
fn caught_non_critical_error(&mut self, when: When, err: SM::Err) {
eprintln!("Caught non critical error at {:?}: {:?}", when, err);
}
}