cargo fmt

This commit is contained in:
Felix Schütt
2022-09-02 11:23:19 +02:00
parent de9361f034
commit 6ac06760ad
3 changed files with 14 additions and 8 deletions

View File

@@ -12,9 +12,9 @@ pub struct RuntimeError {
inner: Arc<RuntimeErrorInner>,
}
pub trait CoreError: fmt::Debug + fmt::Display + core::any::Any { }
pub trait CoreError: fmt::Debug + fmt::Display + core::any::Any {}
impl<T: fmt::Debug + fmt::Display + core::any::Any> CoreError for T { }
impl<T: fmt::Debug + fmt::Display + core::any::Any> CoreError for T {}
/// The source of the `RuntimeError`.
#[derive(Debug)]