pub trait IntoVisitor<'hir> { type Visitor: Visitor<'hir>; // Required method fn into_visitor(&self) -> Self::Visitor; }