The list of Deref implementers is exactly what you're looking for.
The blanket impls in your code block are for references to any other type. All references implement the Deref trait. bool is not a reference, for example.
The list of Deref implementers is exactly what you're looking for.
The blanket impls in your code block are for references to any other type. All references implement the Deref trait. bool is not a reference, for example.