Open
Description
I have a struct with a generic type:
struct ComponentBundle<C> {
component: C,
...
}
Then I have implementations for different concrete types, e.g.,:
impl ComponentBundle<UserID> {
...
}
I want to link to the documentation for one of those implementations. But their anchors are called "#method.revocation_status-1", "#method.revocation_status-2", etc., which is brittle. It would be nice if the anchor names were more predictable.