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
The anchors that Rustdoc generates for multiple implementations of a trait (like Add for multiple different rhs) always point to the first implementation.
The anchors that Rustdoc generates for multiple implementations of a trait (like
Add
for multiple differentrhs
) always point to the first implementation.If you take a look to rust-sfml Vector2f, it implements
impl Add<f32> for Vector2f
andimpl Add for Vector2f
. But both anchors are the same:http://www.rust-sfml.org/doc/rsfml/system/vector2/struct.Vector2f.html#method.add
You can't link to the second implementation...
The text was updated successfully, but these errors were encountered: