Skip to content

Commit 89986a3

Browse files
committed
add partialeq and eq to cursor
1 parent 90b957a commit 89986a3

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/libstd/io/cursor.rs

+13-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ use core::convert::TryInto;
7272
/// }
7373
/// ```
7474
#[stable(feature = "rust1", since = "1.0.0")]
75-
#[derive(Clone, Debug, Default)]
75+
#[derive(Clone, Debug, Default, Eq, PartialEq)]
7676
pub struct Cursor<T> {
7777
inner: T,
7878
pos: u64,
@@ -902,4 +902,16 @@ mod tests {
902902
c.set_position(<usize>::max_value() as u64 + 1);
903903
assert!(c.write_all(&[1, 2, 3]).is_err());
904904
}
905+
906+
#[test]
907+
fn test_partial_eq() {
908+
assert_eq!(Cursor::new(Vec::<u8>::new()), Cursor::new(Vec::<u8>::new()));
909+
}
910+
911+
#[test]
912+
fn test_eq() {
913+
struct AssertEq<T: Eq>(pub T);
914+
915+
let _: AssertEq<Cursor<Vec<u8>>> = AssertEq(Cursor::new(Vec::new()));
916+
}
905917
}

0 commit comments

Comments
 (0)