mm1_common/errors/
an_error.rs

1
2
3
4
5
pub use std::error::Error as StdError;

pub trait AnError: StdError + Send + Sync + 'static {}

impl<E> AnError for E where E: StdError + Send + Sync + 'static {}