You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fn eq(&self, other: &RefCell<T>) -> bool;
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool;
This method tests for !=.
eq()'s other argument is &RefCell, but that's not the case for ne(). It should be fixed.
When rustdoc generates doc from trait implementation, it could replace generic ones with the one we have. Example with http://doc.rust-lang.org/nightly/std/cell/struct.RefCell.html :
eq()
's other argument is &RefCell, but that's not the case forne()
. It should be fixed.cc @nox
The text was updated successfully, but these errors were encountered: