Enum jsonpath_rust::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 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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method 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> 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.