I just found my issue 😑
```
impl Item<'_> {
    fn get_title(&self) -> types::Name {
        match self {
            Item::Back => "Back".into(),
            x => x.get_title()
        }
    }
}
```