Crate ignore_result

source ·

Traits

The Ignore trait is used to consume the result of a function call in cases where a function’s success or failure is irrelevant, i.e. in “best effort” scenarios. By consuming the original Result and swallowing its Ok() result, it guarantees correctness.