eyros 4.2.2

multi-dimensional interval database
Documentation
1
2
3
4
5
6
7
8
9
10
pub trait Debugger {
  fn send(&mut self, _msg: &str);
}

#[cfg(not(feature="wasm"))]
impl<F> Debugger for F where F: FnMut (&str) {
  fn send(&mut self, msg: &str) {
    (self)(msg)
  }
}