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

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl<PathSegment> HasPath<PathSegment> for ()

source§

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

Implementors§

source§

impl<'a, Parent, Value> HasPath<<Value as KnowsPathSegment>::PathSegment> for Visitor<Parent, Value>
where Value: HasPathSegment, Parent: HasPath<Value::PathSegment>,

source§

impl<Value> HasPath<<Value as KnowsPathSegment>::PathSegment> for RootVisitor<Value>
where Value: HasPathSegment,