Trait jlens::JsonExt [] [src]

pub trait JsonExt {
    fn query<S: Selector>(&self, s: S) -> Vec<&Json>;
}

Extension trait for Json

Required Methods

Run query

Runs the query represented by the selector s against the JSON document, accumulating and returning the results in a new vector.

Implementors