pub trait HasRoot<'a>: KnowsRoot<'a> {
    // Required method
    fn root(self) -> Self::Root;
}

Required Methods§

source

fn root(self) -> Self::Root

Implementors§

source§

impl<'a, Parent, Value> HasRoot<'a> for &'a Visitor<Parent, Value>
where &'a Parent: HasRoot<'a>,

source§

impl<'a, Value> HasRoot<'a> for &'a RootVisitor<Value>
where Value: Clone,