#return #macro #continue #break #unwrap

unwrap_or

Four easy unwrap Result and Option macros that allow for any inline-scoped code for things like return, continue, and break

2 stable releases

Uses old Rust 2015

1.0.1 Jul 28, 2023
1.0.0 Dec 14, 2021

#690 in Rust patterns

Download history 109/week @ 2023-12-30 198/week @ 2024-01-06 177/week @ 2024-01-13 23/week @ 2024-01-20 411/week @ 2024-01-27 24/week @ 2024-02-03 9/week @ 2024-02-10 148/week @ 2024-02-17 129/week @ 2024-02-24 36/week @ 2024-03-02 107/week @ 2024-03-09 38/week @ 2024-03-16 17/week @ 2024-03-23 97/week @ 2024-03-30 11/week @ 2024-04-06

169 downloads per month
Used in 2 crates

Custom license

4KB

unwrap_or

Unwrap-or provides four macros that allow you to use code in the same scope as the calling function. They are similar to Rust's unwrap_or_else, but the provided code is not in a closure, but in the function itself.

This allows for more flexibility in what you can write. You can have a return, break, or continue statement when an error occurs, without worrying about any complicated return logic to make it happen. You can also directly reference variables in the calling function without having to move them into the closure.

Here's an example of using it:

fn a_function_which_may_fail() -> Result<String, String> {
	Error("There was an error!")
}

fn another_function() -> Result<(), String> {
	let _ok_value = unwrap_ok_or!(a_function_which_may_fail(), error_value, {
		log(error_value);
		return error_value;
	});
	Ok(())
}

The macro above expands to a simple match function:

let _ok_value = match a_function_which_may_fail() {
	Ok(v) => v,
	Err(error_value) => {
		log(error_value);
		return error_value;
	}
}

There are four functions with this syntax:

let ok_value = unwrap_ok_or!(function_returning_result, error_variable_name, code_to_run_on_error);

let error_value = unwrap_err_or!(function_returning_result, ok_variable_name, code_to_run_on_ok);

let some_value = unwrap_some_or!(function_returning_option, code_to_run_on_none);

let none_value = unwrap_none_or!(function_returning_option, some_variable_name, code_to_run_on_some);

No runtime deps