Crates.io | ignore-result |
lib.rs | ignore-result |
version | 0.2.0 |
source | src |
created_at | 2018-12-24 21:02:41.236723 |
updated_at | 2018-12-24 22:58:57.876405 |
description | Adds a `Result<_, _>.ignore()` method to ignore the return value of a function call without panicking in case of error. |
homepage | https://neosmart.net/blog/2018/rust-ignore-result |
repository | https://github.com/neosmart/ignore-result |
max_upload_size | |
id | 103676 |
size | 8,018 |
ignore-result
for rustSafely ignore errors in function return values when the result isn't critical
This crate adds a .ignore()
function to Result
instances that ignores both the Ok
and Err
variants of the result, silencing compiler warnings about unused errors without needing to resort to
empty match
blocks or panicking in case you call .unwrap()
on what turns out to be an error.
There are cases involving correct error handling where it is desirable to call a method and "keep on keepin' on" even if it does not succeed, something often seen in FFI when interfacing with C APIs or on embedded systems.
As a concrete example, imagine that you have trapped an error and need to bubble it up to the caller, but first, you need to do your best to clean up some resource allocations, etc.
If you did this:
fn my_func() -> Result<(), E> {
let foo = something_important()?;
if foo.is_err() {
// Oh no! We can't continue, need to report this error,
// but first, try to clean up some state
cleanup()?;
}
return foo;
}
The original error contained in foo
would be lost if cleanup()
failed (as the ?
would trigger
an early abort with the return value of cleanup()
and not the original error Err(e)
in foo
).
And if you omitted the ?
from cleanup()?
, the compiler would warn you that there's a result
that's not checked/used, because cleanup()
can fail.
This is a "best effort" scenario where you hope that the function will succeed, there's nothing you can do if it doesn't, and there's a higher priority result (error) that should be persisted even if this step fails.
So you can either write this:
let foo = something_import();
if foo.is_err() {
match cleanup() {
_ => {}
};
return foo;
}
Or use this crate and write this instead:
use ignore_result::Ignore;
if foo.is_err() {
cleanup.ignore();
return foo;
}
and be on your merry way.
Calling foo().ignore()
returns ()
regardless of whether foo()
evaluated to Ok(_)
or Err(_)
-- meaning it guarantees that you are not (incorrectly) relying on an Ok(_)
result.
The ignore
function actually consumes the Result
(being declared as fn ignore(self) -> ()
)
guaranteeing that after calling foo().ignore()
there is no way to get at either the Ok
or Err
variants of the original result, which in turn means there's no way the caller can "presume it's
Ok
and use the return value" (which is the original motivation behind using monads rather than
exceptions in rust), and it additionally makes your intent clear.