thisslime 0.5.1

Error utilities for slimebot.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub trait TracingError {
    fn trace(&self);
}

impl<T: Dispatch> TracingError for T {
    fn trace(&self) {
        self.dispatch();
    }
}

pub use thisslime_core::tracing::error::dispatch::Dispatch;