1
Fork 0

IndexItem.name String -> Symbol

This commit is contained in:
klensy 2023-01-13 15:39:16 +03:00
parent 60cc7783da
commit 4e1258c6b6
3 changed files with 10 additions and 9 deletions

View file

@ -100,7 +100,7 @@ pub(crate) fn ensure_trailing_slash(v: &str) -> impl fmt::Display + '_ {
#[derive(Debug)]
pub(crate) struct IndexItem {
pub(crate) ty: ItemType,
pub(crate) name: String,
pub(crate) name: Symbol,
pub(crate) path: String,
pub(crate) desc: String,
pub(crate) parent: Option<DefId>,