1
2
3
4
5
use crate::IsVisitor;

pub trait KnowsVisitorOf<'a, Type> {
    type Visitor: IsVisitor<'a>;
}