pub trait Context: Sized {
    fn visit<V: Visitor>(&self, visitor: V) -> V::Result;
}
Expand description

A trait for types that can behave as a URI template expansion context.

Required Methods

Visits a variable.

To get variable name, use Visitor::var_name().

Implementors