pub trait HasRoot: KnowsVisitor { // Required method fn root(&self) -> Self::Visitor; }
A trait for types that have a root.
Gets the root of the object.