Struct jsonpath_lib::Compiled

source ·
pub struct Compiled { /* private fields */ }
👎Deprecated since 0.4.0: Please use PathCompiled.
Expand description

A pre-compiled expression.

Calling the select function of this struct will re-use the existing, compiled expression.

§Example

extern crate jsonpath_lib as jsonpath;
#[macro_use] extern crate serde_json;

let mut first_friend = jsonpath::Compiled::compile("$..friends[0]").unwrap();

let json_obj = json!({
    "school": {
        "friends": [
            {"name": "친구1", "age": 20},
            {"name": "친구2", "age": 20}
        ]
    },
    "friends": [
        {"name": "친구3", "age": 30},
        {"name": "친구4"}
]});

// call a first time

let json = first_friend.select(&json_obj).unwrap();

assert_eq!(json, vec![
    &json!({"name": "친구3", "age": 30}),
    &json!({"name": "친구1", "age": 20})
]);

// call a second time

let json = first_friend.select(&json_obj).unwrap();

assert_eq!(json, vec![
    &json!({"name": "친구3", "age": 30}),
    &json!({"name": "친구1", "age": 20})
]);

Implementations§

source§

impl Compiled

source

pub fn compile(path: &str) -> Result<Self, String>

Compile a path expression and return a compiled instance.

If parsing the path fails, it will return an error.

source

pub fn select<'a>( &self, value: &'a Value ) -> Result<Vec<&'a Value>, JsonPathError>

Execute the select operation on the pre-compiled path.

source

pub fn delete(&self, value: Value) -> Result<Value, JsonPathError>

Execute the delete operation on the pre-compiled path.

source

pub fn replace_with<F>( &self, value: Value, fun: &mut F ) -> Result<Value, JsonPathError>
where F: FnMut(Value) -> Option<Value>,

Execute the replace operation on the pre-compiled path.

Trait Implementations§

source§

impl Clone for Compiled

source§

fn clone(&self) -> Compiled

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Compiled

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.