We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d62ab8 commit 7468af8Copy full SHA for 7468af8
src/librustdoc/html/render/sidebar.rs
@@ -237,6 +237,7 @@ fn sidebar_type_alias<'a>(
237
) -> Vec<LinkBlock<'a>> {
238
let mut items = vec![];
239
if let Some(inner_type) = &t.inner_type {
240
+ items.push(LinkBlock::forced(Link::new("aliased-type", "Aliased type")));
241
match inner_type {
242
clean::TypeAliasInnerType::Enum { variants, is_non_exhaustive: _ } => {
243
let mut variants = variants
0 commit comments