From 0a8828e0f9e2d69eb11b022766d742c2e312f9a9 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Fri, 6 Oct 2017 14:32:11 -0700 Subject: [PATCH] Authority should impl Eq An earlier commit added PartialEq for Authority but forgot to impl Eq as well. --- src/uri.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/uri.rs b/src/uri.rs index 980890c..de73240 100644 --- a/src/uri.rs +++ b/src/uri.rs @@ -1094,6 +1094,8 @@ impl PartialEq for Authority { } } +impl Eq for Authority {} + /// Case-insensitive equality /// /// # Examples