mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 06:17:39 +03:00
Leave private traits' name out of scope
This commit is contained in:
parent
c3838bd7c5
commit
6b00235610
1 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue