Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implement PartialEq and Eq for Response
Problem: The `Response` type does not impl `PartialEq` or `Eq`, making it difficult to perform equality comparisons in unit tests. Solution: Impl `PartialEq` and `Eq` for the `Response` type when the associated generic state parameter also impls these traits. Testing: `cargo test` Issue: #35
- Loading branch information