diff options
Diffstat (limited to 'components/url/lib.rs')
-rw-r--r-- | components/url/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/url/lib.rs b/components/url/lib.rs index 43498444a54..49db7d4d951 100644 --- a/components/url/lib.rs +++ b/components/url/lib.rs @@ -24,7 +24,7 @@ use std::path::Path; use std::sync::Arc; use url::{Url, Origin, Position}; -#[derive(Debug, Clone, PartialEq, Eq, Hash)] +#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] #[cfg_attr(feature = "servo", derive(HeapSizeOf, Serialize, Deserialize))] pub struct ServoUrl(Arc<Url>); |