jsonpath_rust

Enum JsonPathValue

Source
pub enum JsonPathValue<'a, Data> {
    Slice(&'a Data, String),
    NewValue(Data),
    NoValue,
}
Expand description

A result of json path Can be either a slice of initial data or a new generated value(like length of array)

Variants§

§

Slice(&'a Data, String)

The slice of the initial json data

§

NewValue(Data)

The new data that was generated from the input data (like length operator)

§

NoValue

The absent value that indicates the input data is not matched to the given json path (like the absent fields)

Implementations§

Source§

impl<'a, Data: Clone + Debug + Default> JsonPathValue<'a, Data>

Source

pub fn to_data(self) -> Data

Transforms given value into data either by moving value out or by cloning

Source

pub fn to_path(self) -> Option<String>

Transforms given value into path

Source

pub fn from_root(data: &'a Data) -> Self

Source

pub fn new_slice(data: &'a Data, path: String) -> Self

Source§

impl<'a, Data> JsonPathValue<'a, Data>

Source

pub fn only_no_value(input: &[JsonPathValue<'a, Data>]) -> bool

Source

pub fn map_vec(data: Vec<(&'a Data, String)>) -> Vec<JsonPathValue<'a, Data>>

Source

pub fn map_slice<F>(self, mapper: F) -> Vec<JsonPathValue<'a, Data>>

Source

pub fn flat_map_slice<F>(self, mapper: F) -> Vec<JsonPathValue<'a, Data>>
where F: FnOnce(&'a Data, String) -> Vec<JsonPathValue<'a, Data>>,

Source

pub fn has_value(&self) -> bool

Source

pub fn vec_as_data(input: Vec<JsonPathValue<'a, Data>>) -> Vec<&'a Data>

Source

pub fn vec_as_pair( input: Vec<JsonPathValue<'a, Data>>, ) -> Vec<(&'a Data, String)>

Source

pub fn slice_or(self, default: &'a Data) -> &'a Data

moves a pointer (from slice) out or provides a default value when the value was generated

Trait Implementations§

Source§

impl<'a, Data: Clone> Clone for JsonPathValue<'a, Data>

Source§

fn clone(&self) -> JsonPathValue<'a, Data>

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<'a, Data: Debug> Debug for JsonPathValue<'a, Data>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<'a, Data: PartialEq> PartialEq for JsonPathValue<'a, Data>

Source§

fn eq(&self, other: &JsonPathValue<'a, Data>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a, Data> StructuralPartialEq for JsonPathValue<'a, Data>

Auto Trait Implementations§

§

impl<'a, Data> Freeze for JsonPathValue<'a, Data>
where Data: Freeze,

§

impl<'a, Data> RefUnwindSafe for JsonPathValue<'a, Data>
where Data: RefUnwindSafe,

§

impl<'a, Data> Send for JsonPathValue<'a, Data>
where Data: Send + Sync,

§

impl<'a, Data> Sync for JsonPathValue<'a, Data>
where Data: Sync,

§

impl<'a, Data> Unpin for JsonPathValue<'a, Data>
where Data: Unpin,

§

impl<'a, Data> UnwindSafe for JsonPathValue<'a, Data>
where Data: UnwindSafe + RefUnwindSafe,

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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,

Source§

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>,

Source§

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>,

Source§

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.