pub trait KnowsParent<'a> {
    type Parent;
}

Required Associated Types§

Implementations on Foreign Types§

source§

impl<'a, T: KnowsParent<'a>> KnowsParent<'a> for &'a T

§

type Parent = <T as KnowsParent<'a>>::Parent

source§

impl<'a, T: KnowsParent<'a>> KnowsParent<'a> for &'a mut T

§

type Parent = <T as KnowsParent<'a>>::Parent

Implementors§

source§

impl<'a, Parent, Value> KnowsParent<'a> for Visitor<Parent, Value>

§

type Parent = Parent

source§

impl<'a, Value> KnowsParent<'a> for RootVisitor<Value>

§

type Parent = RootVisitor<Value>