Skip to content

Instantly share code, notes, and snippets.

@berkes
Created October 4, 2022 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berkes/480c233fc70f98e40f1576bbd906d061 to your computer and use it in GitHub Desktop.
Save berkes/480c233fc70f98e40f1576bbd906d061 to your computer and use it in GitHub Desktop.
PartialEq
#[derive(PartialEq)
pub struct EmailAddress {
//...
}
impl PartialEq for EmailAddress {
fn eq(&self, other: &Self) -> bool {
self.value == other.value
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment