Start fetching events

This commit is contained in:
Dominik Werder
2021-07-09 21:34:03 +02:00
parent e17edd0533
commit 09724fd540
13 changed files with 412 additions and 86 deletions

View File

@@ -34,6 +34,14 @@ impl Error {
}
}
pub fn with_msg_no_trace<S: Into<String>>(s: S) -> Self {
Self {
msg: s.into(),
trace: None,
trace_str: None,
}
}
pub fn msg(&self) -> &str {
&self.msg
}