mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Access Error trait exclusively through ::thiserror
This commit is contained in:
parent
db7825e956
commit
e0e994314b
2 changed files with 13 additions and 11 deletions
|
@ -37,7 +37,7 @@ fn fallback(input: &DeriveInput, error: syn::Error) -> TokenStream {
|
||||||
|
|
||||||
#[allow(unused_qualifications)]
|
#[allow(unused_qualifications)]
|
||||||
#[automatically_derived]
|
#[automatically_derived]
|
||||||
impl #impl_generics ::std::error::Error for #ty #ty_generics #where_clause
|
impl #impl_generics ::thiserror::__private::Error for #ty #ty_generics #where_clause
|
||||||
where
|
where
|
||||||
// Work around trivial bounds being unstable.
|
// Work around trivial bounds being unstable.
|
||||||
// https://github.com/rust-lang/rust/issues/48214
|
// https://github.com/rust-lang/rust/issues/48214
|
||||||
|
@ -62,17 +62,17 @@ fn impl_struct(input: Struct) -> TokenStream {
|
||||||
let source_body = if let Some(transparent_attr) = &input.attrs.transparent {
|
let source_body = if let Some(transparent_attr) = &input.attrs.transparent {
|
||||||
let only_field = &input.fields[0];
|
let only_field = &input.fields[0];
|
||||||
if only_field.contains_generic {
|
if only_field.contains_generic {
|
||||||
error_inferred_bounds.insert(only_field.ty, quote!(::std::error::Error));
|
error_inferred_bounds.insert(only_field.ty, quote!(::thiserror::__private::Error));
|
||||||
}
|
}
|
||||||
let member = &only_field.member;
|
let member = &only_field.member;
|
||||||
Some(quote_spanned! {transparent_attr.span=>
|
Some(quote_spanned! {transparent_attr.span=>
|
||||||
::std::error::Error::source(self.#member.as_dyn_error())
|
::thiserror::__private::Error::source(self.#member.as_dyn_error())
|
||||||
})
|
})
|
||||||
} else if let Some(source_field) = input.source_field() {
|
} else if let Some(source_field) = input.source_field() {
|
||||||
let source = &source_field.member;
|
let source = &source_field.member;
|
||||||
if source_field.contains_generic {
|
if source_field.contains_generic {
|
||||||
let ty = unoptional_type(source_field.ty);
|
let ty = unoptional_type(source_field.ty);
|
||||||
error_inferred_bounds.insert(ty, quote!(::std::error::Error + 'static));
|
error_inferred_bounds.insert(ty, quote!(::thiserror::__private::Error + 'static));
|
||||||
}
|
}
|
||||||
let asref = if type_is_option(source_field.ty) {
|
let asref = if type_is_option(source_field.ty) {
|
||||||
Some(quote_spanned!(source.span()=> .as_ref()?))
|
Some(quote_spanned!(source.span()=> .as_ref()?))
|
||||||
|
@ -90,7 +90,7 @@ fn impl_struct(input: Struct) -> TokenStream {
|
||||||
};
|
};
|
||||||
let source_method = source_body.map(|body| {
|
let source_method = source_body.map(|body| {
|
||||||
quote! {
|
quote! {
|
||||||
fn source(&self) -> ::core::option::Option<&(dyn ::std::error::Error + 'static)> {
|
fn source(&self) -> ::core::option::Option<&(dyn ::thiserror::__private::Error + 'static)> {
|
||||||
use ::thiserror::__private::AsDynError as _;
|
use ::thiserror::__private::AsDynError as _;
|
||||||
#body
|
#body
|
||||||
}
|
}
|
||||||
|
@ -218,7 +218,7 @@ fn impl_struct(input: Struct) -> TokenStream {
|
||||||
quote! {
|
quote! {
|
||||||
#[allow(unused_qualifications)]
|
#[allow(unused_qualifications)]
|
||||||
#[automatically_derived]
|
#[automatically_derived]
|
||||||
impl #impl_generics ::std::error::Error for #ty #ty_generics #error_where_clause {
|
impl #impl_generics ::thiserror::__private::Error for #ty #ty_generics #error_where_clause {
|
||||||
#source_method
|
#source_method
|
||||||
#provide_method
|
#provide_method
|
||||||
}
|
}
|
||||||
|
@ -238,11 +238,11 @@ fn impl_enum(input: Enum) -> TokenStream {
|
||||||
if let Some(transparent_attr) = &variant.attrs.transparent {
|
if let Some(transparent_attr) = &variant.attrs.transparent {
|
||||||
let only_field = &variant.fields[0];
|
let only_field = &variant.fields[0];
|
||||||
if only_field.contains_generic {
|
if only_field.contains_generic {
|
||||||
error_inferred_bounds.insert(only_field.ty, quote!(::std::error::Error));
|
error_inferred_bounds.insert(only_field.ty, quote!(::thiserror::__private::Error));
|
||||||
}
|
}
|
||||||
let member = &only_field.member;
|
let member = &only_field.member;
|
||||||
let source = quote_spanned! {transparent_attr.span=>
|
let source = quote_spanned! {transparent_attr.span=>
|
||||||
::std::error::Error::source(transparent.as_dyn_error())
|
::thiserror::__private::Error::source(transparent.as_dyn_error())
|
||||||
};
|
};
|
||||||
quote! {
|
quote! {
|
||||||
#ty::#ident {#member: transparent} => #source,
|
#ty::#ident {#member: transparent} => #source,
|
||||||
|
@ -251,7 +251,7 @@ fn impl_enum(input: Enum) -> TokenStream {
|
||||||
let source = &source_field.member;
|
let source = &source_field.member;
|
||||||
if source_field.contains_generic {
|
if source_field.contains_generic {
|
||||||
let ty = unoptional_type(source_field.ty);
|
let ty = unoptional_type(source_field.ty);
|
||||||
error_inferred_bounds.insert(ty, quote!(::std::error::Error + 'static));
|
error_inferred_bounds.insert(ty, quote!(::thiserror::__private::Error + 'static));
|
||||||
}
|
}
|
||||||
let asref = if type_is_option(source_field.ty) {
|
let asref = if type_is_option(source_field.ty) {
|
||||||
Some(quote_spanned!(source.span()=> .as_ref()?))
|
Some(quote_spanned!(source.span()=> .as_ref()?))
|
||||||
|
@ -272,7 +272,7 @@ fn impl_enum(input: Enum) -> TokenStream {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
Some(quote! {
|
Some(quote! {
|
||||||
fn source(&self) -> ::core::option::Option<&(dyn ::std::error::Error + 'static)> {
|
fn source(&self) -> ::core::option::Option<&(dyn ::thiserror::__private::Error + 'static)> {
|
||||||
use ::thiserror::__private::AsDynError as _;
|
use ::thiserror::__private::AsDynError as _;
|
||||||
#[allow(deprecated)]
|
#[allow(deprecated)]
|
||||||
match self {
|
match self {
|
||||||
|
@ -483,7 +483,7 @@ fn impl_enum(input: Enum) -> TokenStream {
|
||||||
quote! {
|
quote! {
|
||||||
#[allow(unused_qualifications)]
|
#[allow(unused_qualifications)]
|
||||||
#[automatically_derived]
|
#[automatically_derived]
|
||||||
impl #impl_generics ::std::error::Error for #ty #ty_generics #error_where_clause {
|
impl #impl_generics ::thiserror::__private::Error for #ty #ty_generics #error_where_clause {
|
||||||
#source_method
|
#source_method
|
||||||
#provide_method
|
#provide_method
|
||||||
}
|
}
|
||||||
|
|
|
@ -287,4 +287,6 @@ pub mod __private {
|
||||||
#[cfg(error_generic_member_access)]
|
#[cfg(error_generic_member_access)]
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
pub use crate::provide::ThiserrorProvide;
|
pub use crate::provide::ThiserrorProvide;
|
||||||
|
#[doc(hidden)]
|
||||||
|
pub use std::error::Error;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue