pub trait HasPath: KnowsPathSegment {
    // Required method
    fn path(&self) -> Path<Self::PathSegment>;
}

Required Methods§

source

fn path(&self) -> Path<Self::PathSegment>

Implementors§

source§

impl<Parent, Value> HasPath for Visitor<Parent, Value>
where Value: HasPathSegment, Parent: HasPath<PathSegment = Value::PathSegment>,

source§

impl<Value> HasPath for RootVisitor<Value>
where Value: HasPathSegment,