althonos / packageurl.rs

Rust implementation of the Package URL specification.
MIT License
8 stars 6 forks source link

Derive Eq for Full Equivalence Relations #10

Closed voteblake closed 4 months ago

voteblake commented 1 year ago

All of PackageUrl's members implement Eq and PackageUrl itself already derives PartialEq. This adds an Eq derive, which indicates symmetric and transitive equality, which PackageUrl has given all of its members do as well.

ctron commented 1 year ago

@althonos could this be merged?