mirror of https://github.com/zkat/miette.git
feat(derive): enable more boxed types to be #[diagnostic_source] (#338)
This commit is contained in:
parent
6e829f8c0c
commit
c2f06f6cca
|
|
@ -69,7 +69,7 @@ pub trait Diagnostic: std::error::Error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
macro_rules! box_impls {
|
macro_rules! box_error_impls {
|
||||||
($($box_type:ty),*) => {
|
($($box_type:ty),*) => {
|
||||||
$(
|
$(
|
||||||
impl std::error::Error for $box_type {
|
impl std::error::Error for $box_type {
|
||||||
|
|
@ -85,12 +85,29 @@ macro_rules! box_impls {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
box_impls! {
|
box_error_impls! {
|
||||||
Box<dyn Diagnostic>,
|
Box<dyn Diagnostic>,
|
||||||
Box<dyn Diagnostic + Send>,
|
Box<dyn Diagnostic + Send>,
|
||||||
Box<dyn Diagnostic + Send + Sync>
|
Box<dyn Diagnostic + Send + Sync>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
macro_rules! box_borrow_impls {
|
||||||
|
($($box_type:ty),*) => {
|
||||||
|
$(
|
||||||
|
impl std::borrow::Borrow<dyn Diagnostic> for $box_type {
|
||||||
|
fn borrow(&self) -> &(dyn Diagnostic + 'static) {
|
||||||
|
self.as_ref()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)*
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
box_borrow_impls! {
|
||||||
|
Box<dyn Diagnostic + Send>,
|
||||||
|
Box<dyn Diagnostic + Send + Sync>
|
||||||
|
}
|
||||||
|
|
||||||
impl<T: Diagnostic + Send + Sync + 'static> From<T>
|
impl<T: Diagnostic + Send + Sync + 'static> From<T>
|
||||||
for Box<dyn Diagnostic + Send + Sync + 'static>
|
for Box<dyn Diagnostic + Send + Sync + 'static>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -41,6 +41,14 @@ struct TestTupleError(#[diagnostic_source] AnErr);
|
||||||
#[error("TestError")]
|
#[error("TestError")]
|
||||||
struct TestBoxedError(#[diagnostic_source] Box<dyn Diagnostic>);
|
struct TestBoxedError(#[diagnostic_source] Box<dyn Diagnostic>);
|
||||||
|
|
||||||
|
#[derive(Debug, miette::Diagnostic, thiserror::Error)]
|
||||||
|
#[error("TestError")]
|
||||||
|
struct TestBoxedSendError(#[diagnostic_source] Box<dyn Diagnostic + Send>);
|
||||||
|
|
||||||
|
#[derive(Debug, miette::Diagnostic, thiserror::Error)]
|
||||||
|
#[error("TestError")]
|
||||||
|
struct TestBoxedSendSyncError(#[diagnostic_source] Box<dyn Diagnostic + Send + Sync>);
|
||||||
|
|
||||||
#[derive(Debug, miette::Diagnostic, thiserror::Error)]
|
#[derive(Debug, miette::Diagnostic, thiserror::Error)]
|
||||||
#[error("TestError")]
|
#[error("TestError")]
|
||||||
struct TestArcedError(#[diagnostic_source] std::sync::Arc<dyn Diagnostic>);
|
struct TestArcedError(#[diagnostic_source] std::sync::Arc<dyn Diagnostic>);
|
||||||
|
|
@ -71,6 +79,12 @@ fn test_diagnostic_source() {
|
||||||
let error = TestBoxedError(Box::new(AnErr));
|
let error = TestBoxedError(Box::new(AnErr));
|
||||||
assert!(error.diagnostic_source().is_some());
|
assert!(error.diagnostic_source().is_some());
|
||||||
|
|
||||||
|
let error = TestBoxedSendError(Box::new(AnErr));
|
||||||
|
assert!(error.diagnostic_source().is_some());
|
||||||
|
|
||||||
|
let error = TestBoxedSendSyncError(Box::new(AnErr));
|
||||||
|
assert!(error.diagnostic_source().is_some());
|
||||||
|
|
||||||
let error = TestArcedError(std::sync::Arc::new(AnErr));
|
let error = TestArcedError(std::sync::Arc::new(AnErr));
|
||||||
assert!(error.diagnostic_source().is_some());
|
assert!(error.diagnostic_source().is_some());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue