This repository was archived by the owner on May 20, 2020. It is now read-only.
This repository was archived by the owner on May 20, 2020. It is now read-only.
Support non-module items: frontend #122
Open
Description
Once I work the bugs out of #108, it'll be time to support the other kinds of items.
Fundamentally, what needs to happen is with:
- model: https://github.com/steveklabnik/rustdoc/tree/master/frontend/app/models needs a new model
- route: the main router and individual routes. The main router is tricky; as we need to keep compatibility with older URLs.
- template: https://github.com/steveklabnik/rustdoc/tree/master/frontend/app/templates
Each kind:
- Enum
- Tuple
- Struct
- Union
- Trait
- Function
- Method
- Macro
- Mod
- Type
- Local
- Static
- Const
- Field
I am not actually sure about Local, as I'd imagine local items don't need to be documented.
This is blocked on #121