Expand description
Utility functions for output equality comparison in queries.
These functions are designed to be used with the #[query(output_eq = ...)] attribute
when the output type is Result<T, E> and E does not implement PartialEq.
Functionsยง
- ignore_
err - Compare
Okvalues for equality, treat allErras equal. - ok_
or_ invalidate - Compare only the
Okvalues. Returnsfalsefor anyErrcase, causing downstream queries to be invalidated (recomputed).