Trait is_tree::traits::has_visitor::IsVisitor
source · pub trait IsVisitor<'a, Value>where
Value: KnowsPathSegment,{
// Required method
fn visit<Child>(self, value: Child) -> Visitor<Child::ParentVisitor, Child>
where Child: KnowsPathSegment<PathSegment = Value::PathSegment> + KnowsParentVisitor<'a>,
Self: Into<Child::ParentVisitor>;
}