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
As of #24396, rustdoc inlines Deref impls (:smiley:). However, static methods are also included. Static methods probably shouldn't be included as they can't be called through Deref. They also appear to mess with search results.
The text was updated successfully, but these errors were encountered:
@aochagavia nah I think including those is fine because they are applicable to a DerefMut implementation. In theory the "most correct" thing to do would be to detect whether DerefMut is implemented or not but it's also fine to not do that for now.
As of #24396, rustdoc inlines Deref impls (:smiley:). However, static methods are also included. Static methods probably shouldn't be included as they can't be called through Deref. They also appear to mess with search results.
The text was updated successfully, but these errors were encountered: