mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
commit
0a0516db73
1 changed files with 12 additions and 6 deletions
|
@ -169,12 +169,15 @@ fn impl_struct(input: Struct) -> TokenStream {
|
||||||
let from = unoptional_type(from_field.ty);
|
let from = unoptional_type(from_field.ty);
|
||||||
let source_var = Ident::new("source", span);
|
let source_var = Ident::new("source", span);
|
||||||
let body = from_initializer(from_field, backtrace_field, &source_var);
|
let body = from_initializer(from_field, backtrace_field, &source_var);
|
||||||
|
let from_function = quote! {
|
||||||
|
fn from(#source_var: #from) -> Self {
|
||||||
|
#ty #body
|
||||||
|
}
|
||||||
|
};
|
||||||
let from_impl = quote_spanned! {span=>
|
let from_impl = quote_spanned! {span=>
|
||||||
#[automatically_derived]
|
#[automatically_derived]
|
||||||
impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause {
|
impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause {
|
||||||
fn from(#source_var: #from) -> Self {
|
#from_function
|
||||||
#ty #body
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Some(quote! {
|
Some(quote! {
|
||||||
|
@ -436,12 +439,15 @@ fn impl_enum(input: Enum) -> TokenStream {
|
||||||
let from = unoptional_type(from_field.ty);
|
let from = unoptional_type(from_field.ty);
|
||||||
let source_var = Ident::new("source", span);
|
let source_var = Ident::new("source", span);
|
||||||
let body = from_initializer(from_field, backtrace_field, &source_var);
|
let body = from_initializer(from_field, backtrace_field, &source_var);
|
||||||
|
let from_function = quote! {
|
||||||
|
fn from(#source_var: #from) -> Self {
|
||||||
|
#ty::#variant #body
|
||||||
|
}
|
||||||
|
};
|
||||||
let from_impl = quote_spanned! {span=>
|
let from_impl = quote_spanned! {span=>
|
||||||
#[automatically_derived]
|
#[automatically_derived]
|
||||||
impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause {
|
impl #impl_generics ::core::convert::From<#from> for #ty #ty_generics #where_clause {
|
||||||
fn from(#source_var: #from) -> Self {
|
#from_function
|
||||||
#ty::#variant #body
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Some(quote! {
|
Some(quote! {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue