Fix a compile error in derive(Deserialize) with no_std + alloc

This commit is contained in:
Jonas Platte
2019-05-31 22:16:40 +02:00
parent 0726623389
commit e4e110e28f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2059,7 +2059,7 @@ fn deserialize_identifier(
) = if collect_other_fields {
(
Some(quote! {
let __value = _serde::private::de::Content::String(__value.to_string());
let __value = _serde::private::de::Content::String(_serde::export::ToString::to_string(__value));
}),
Some(quote! {
let __value = _serde::private::de::Content::Str(__value);