Macrosยง
- ok_
unwrap_ break - Unwraps in the
Ok
case; breaks in theResult
case. - ok_
unwrap_ do - Unwraps in the
Ok
case; does something in theErr
case. - ok_
unwrap_ return - Unwraps in the
Ok
case; returns in theErr
case. - unwrap_
break - Unwraps in the
Some
case; breaks in theNone
case. - unwrap_
do - Unwraps in the
Some
case; does something in theNone
case. - unwrap_
return - Unwraps in the
Some
case; returns in theNone
case.