pub trait QueryPath where
    Self: Sized
{ fn into_path(self) -> String; fn wildcard(self) -> Wildcard { ... } fn selection(self, name: &str) -> Selection { ... } }
Expand description

Used by code produced from Toql derive.

Required Methods

Provided Methods

Implementors