We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I am thinking about something like this
impl<T: PartialEq> PartialEq for Cursor<T> { fn eq(&self, other: &Self) -> bool { self.get_ref() == other.get_ref() && self.position() == other.position() } }
is there a reason why this is not implemented?