[][src]Crate unwrap_return

Macros

ok_unwrap_break

Unwraps in the Ok case; breaks in the Result case.

ok_unwrap_do

Unwraps in the Ok case; does something in the Err case.

ok_unwrap_return

Unwraps in the Ok case; returns in the Err case.

unwrap_break

Unwraps in the Some case; breaks in the None case.

unwrap_do

Unwraps in the Some case; does something in the None case.

unwrap_return

Unwraps in the Some case; returns in the None case.