Skip to main content

QueryPath

Trait QueryPath 

Source
pub trait QueryPath: Sized {
    // Required method
    fn into_path(self) -> String;

    // Provided methods
    fn wildcard(self) -> Wildcard { ... }
    fn selection(self, name: &str) -> Selection { ... }
}
Expand description

Used by code produced from Toql derive.

Required Methods§

Provided Methods§

Source

fn wildcard(self) -> Wildcard

Source

fn selection(self, name: &str) -> Selection

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§