Traits§
- Ignore
- 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 originalResult
and swallowing itsOk()
result, it guarantees correctness.