We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ddb605 commit aa39d75Copy full SHA for aa39d75
src/liburl/lib.rs
@@ -48,7 +48,7 @@ use collections::HashMap;
48
/// fragment: Some(~"quz") };
49
/// // https://[email protected]:8080/foo/bar?baz=qux#quz
50
/// ```
51
-#[deriving(Clone, Eq)]
+#[deriving(Clone, Eq, TotalEq)]
52
pub struct Url {
53
/// The scheme part of a URL, such as `https` in the above example.
54
scheme: ~str,
@@ -79,7 +79,7 @@ pub struct Path {
79
}
80
81
/// An optional subcomponent of a URI authority component.
82
83
pub struct UserInfo {
84
/// The user name.
85
user: ~str,
0 commit comments