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
It will panic if you don't return Continue and the callee has no way of knowing if they are being called from a "normal" code path where you are allowed to return whatever you want and or a special panic-if-not Continue codepath. Not cool.
This is dangerous and basically means that returning anything but Continue is forbidden if you don't want panics.
At they very least this should be documented.
The text was updated successfully, but these errors were encountered:
It will panic if you don't return
Continue
and the callee has no way of knowing if they are being called from a "normal" code path where you are allowed to return whatever you want and or a special panic-if-notContinue
codepath. Not cool.This is dangerous and basically means that returning anything but
Continue
is forbidden if you don't want panics.At they very least this should be documented.
The text was updated successfully, but these errors were encountered: