-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Description
I recently published a crate with types that implement Deref
. On docs.rs
, version 0.2.0
of this crate shows incorrect and completely unrelated methods for the Deref
implementation for Vec1
. I see the same thing when I build the documentation with recent versions of the nightly toolchain locally (including but not limited to 1.78.0-nightly (f4b771bf1 2024-03-14)
).
I only expect the methods of this type (Slice1
) to show up in the Deref
section for Vec1
. However, completely unrelated methods like this from this unrelated type are shown in this section, causing a very large, misleading, and mostly useless list of functions to display.
There are some open bugs regarding the "Methods from Deref
" section, but none that seem to observe such unrelated functions. Sorry if I missed something and this is a duplicate and thanks for taking a look!