Leave private traits' name out of scope

This commit is contained in:
David Tolnay 2023-12-25 10:26:29 -08:00
parent c3838bd7c5
commit 6b00235610
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -89,7 +89,7 @@ fn impl_struct(input: Struct) -> TokenStream {
let source_method = source_body.map(|body| {
quote! {
fn source(&self) -> ::core::option::Option<&(dyn std::error::Error + 'static)> {
use thiserror::__private::AsDynError;
use thiserror::__private::AsDynError as _;
#body
}
}
@ -125,7 +125,7 @@ fn impl_struct(input: Struct) -> TokenStream {
})
};
quote! {
use thiserror::__private::ThiserrorProvide;
use thiserror::__private::ThiserrorProvide as _;
#source_provide
#self_provide
}
@ -266,7 +266,7 @@ fn impl_enum(input: Enum) -> TokenStream {
});
Some(quote! {
fn source(&self) -> ::core::option::Option<&(dyn std::error::Error + 'static)> {
use thiserror::__private::AsDynError;
use thiserror::__private::AsDynError as _;
#[allow(deprecated)]
match self {
#(#arms)*
@ -316,7 +316,7 @@ fn impl_enum(input: Enum) -> TokenStream {
#source: #varsource,
..
} => {
use thiserror::__private::ThiserrorProvide;
use thiserror::__private::ThiserrorProvide as _;
#source_provide
#self_provide
}
@ -340,7 +340,7 @@ fn impl_enum(input: Enum) -> TokenStream {
};
quote! {
#ty::#ident {#backtrace: #varsource, ..} => {
use thiserror::__private::ThiserrorProvide;
use thiserror::__private::ThiserrorProvide as _;
#source_provide
}
}