doc.rust-lang.org/stable/std/cmp/trait.Eq.html
Preview meta tags from the doc.rust-lang.org website.
Linked Hostnames
3General Meta Tags
6- titleEq in std::cmp - Rust
- charsetutf-8
- viewportwidth=device-width, initial-scale=1.0
- generatorrustdoc
- descriptionTrait for comparisons corresponding to equivalence relations.
Link Tags
4- alternate icon../../static.files/favicon-32x32-6580c154.png
- icon../../static.files/favicon-044be391.svg
- stylesheet../../static.files/normalize-9960930a.css
- stylesheet../../static.files/rustdoc-6c3ea77c.css
Links
3- https://doc.rust-lang.org/1.86.0/reference/items/traits.html#dyn-compatibility
- https://en.wikipedia.org/wiki/Equivalence_relation
- https://play.rust-lang.org/?code=%23!%5Ballow(unused)%5D%0Afn+main()+%7B%0A++++enum+BookFormat+%7B%0A++++++++Paperback,%0A++++++++Hardback,%0A++++++++Ebook,%0A++++%7D%0A++++%0A++++struct+Book+%7B%0A++++++++isbn:+i32,%0A++++++++format:+BookFormat,%0A++++%7D%0A++++%0A++++impl+PartialEq+for+Book+%7B%0A++++++++fn+eq(%26self,+other:+%26Self)+-%3E+bool+%7B%0A++++++++++++self.isbn+==+other.isbn%0A++++++++%7D%0A++++%7D%0A++++%0A++++impl+Eq+for+Book+%7B%7D%0A%7D&edition=2021