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 have code where I use try_into to match against another enum (generated by another macro), however I need the original input value in the case that the try_into failed. I think this is much more usefull than a &'static str in general, but at least it would be nice if this could be an option. So I'd get code like this:
I have code where I use
try_into
to match against another enum (generated by another macro), however I need the original input value in the case that thetry_into
failed. I think this is much more usefull than a&'static str
in general, but at least it would be nice if this could be an option. So I'd get code like this:The text was updated successfully, but these errors were encountered: