struct ComponentBundle<C> {
component: C,
...
}
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.
I have a struct with a generic type:
Then I have implementations for different concrete types, e.g.,:
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.