You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I seem to be getting a runtime thread 'main' has overflowed its stack error when trying to delegate to a wrapper type for deserialisation. Seems possibly related to a prior issue with a similar thing happening at compile time: rust-lang/rust#55779 but that is marked as completed.
The text was updated successfully, but these errors were encountered:
I think this is behaving correctly. You've written a Deserialize impl for Foo that requires deserializing Wrapper, and a Deserialize impl for Wrapper that involves deserializing Foo.
Minimum working example here: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=b05606f4e212d06a700f8ff38fa26d12
I seem to be getting a runtime
thread 'main' has overflowed its stack
error when trying to delegate to a wrapper type for deserialisation. Seems possibly related to a prior issue with a similar thing happening at compile time: rust-lang/rust#55779 but that is marked as completed.The text was updated successfully, but these errors were encountered: