pub trait JSONPathIndex: Index {
    // Required method
    fn jsonpath(&self) -> String;
}

Required Methods§

source

fn jsonpath(&self) -> String

Implementations on Foreign Types§

source§

impl<'a, T> JSONPathIndex for &'a Twhere T: ?Sized + JSONPathIndex,

source§

impl JSONPathIndex for usize

source§

impl JSONPathIndex for str

source§

impl JSONPathIndex for String

Implementors§