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
{{ message }}
This repository was archived by the owner on Aug 16, 2021. It is now read-only.
The docs currently say that the bail! macro is like using try! or ?.
This isn't really correct. `try!` and `?` operate on a `Result` type,
returning the `Ok` value, if it is `Ok`, or returning early from the
function if it is an `Err`. `bail!` is equivalent to just returning
an `Err`, period. This change makes that a little more clear.
0 commit comments