Spanned

Struct Spanned 

Source
pub struct Spanned<V> { /* private fields */ }
Expand description

A value with start/end position information. Can wrap arbitrary Deserializeable JSON values, not just basic JSON types.

Implementations§

Source§

impl<V> Spanned<V>

Source

pub fn start(&self) -> usize

Get the starting byte offset (inclusive) of this value. Likely 0 unless loaded through crate::from_*.

Source

pub fn end(&self) -> usize

Get the ending byte offset (non-inclusive) of this value. Likely 0 unless loaded through crate::from_*.

Source

pub fn span(&self) -> (usize, usize)

Get the start .. end byte offset of this value as a (start, end) tuple. Likely (0, 0) unless loaded through crate::from_*.

Source

pub fn range(&self) -> Range<usize>

Get the start .. end byte offset of this value as a start .. end Range. Likely 0 .. 0 unless loaded through crate::from_*.

Source

pub fn into_inner(self) -> V

Get the interior value of the spanned region as an owned value.

Source

pub fn get_ref(&self) -> &V

Get the interior value of the spanned region as a reference.

Source

pub fn get_mut(&mut self) -> &mut V

Get the interior value of the spanned region as a mutable/exclusive reference.

Source§

impl Spanned<Value>

Various conversion methods:

  • as_span_[type]() returns borrowing Options of some sort.
  • into_span_[type]() returns Ok(type) or Err(original).

See also on super::Value as provided by Deref implementation:

  • is_[type]() returns bools with obvious meanings.
  • as_[type]() for borrowing Options without span info.
  • into_[type]() for Ok(type) without span info, or Err(original).
Source

pub fn as_span_null(&self) -> Option<Null>

Some(span + ()) if self is null`

Source

pub fn as_span_bool(&self) -> Option<Bool>

Some(span + inner) if self is true or false

Source

pub fn as_span_number(&self) -> Option<Num<'_>>

Some(span + &inner) if self is a number like 123

Source

pub fn as_span_string(&self) -> Option<Str<'_>>

Some(span + &inner) if self is a string like "asdf"

Source

pub fn as_span_array(&self) -> Option<Span<'_>>

Some(span + &inner) if self is an array like [1, 2, 3]

Source

pub fn as_span_object(&self) -> Option<Obj<'_>>

Some(span + &inner) if self is an object like {"a": 1, "b": 2}

Source

pub fn into_span_null(self) -> Result<Null, Self>

Ok(span + ()) if self is null, otherwise Err(self)

Source

pub fn into_span_bool(self) -> Result<Bool, Self>

Ok(span + inner) if self is true or false, otherwise Err(self)

Source

pub fn into_span_number(self) -> Result<Number, Self>

Ok(span + inner) if self is a number like 123, otherwise Err(self)

Source

pub fn into_span_string(self) -> Result<String, Self>

Ok(span + inner) if self is a string like "asdf", otherwise Err(self)

Source

pub fn into_span_array(self) -> Result<Array, Self>

Ok(span + inner) if self is an array like [1, 2, 3], otherwise Err(self)

Source

pub fn into_span_object(self) -> Result<Object, Self>

Ok(span + inner) if self is an object like {"a": 1, "b": 2}, otherwise Err(self)

Source

pub fn pointer(&self, path: &str) -> Option<&Value>

Lookup a value by JSON Pointer (RFC 6901)

Source

pub fn pointer_mut(&mut self, path: &str) -> Option<&mut Value>

Lookup a value by JSON Pointer (RFC 6901)

Trait Implementations§

Source§

impl<R, V: AsRef<R>> AsRef<R> for Spanned<V>

Source§

fn as_ref(&self) -> &R

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<V: Clone> Clone for Spanned<V>

Source§

fn clone(&self) -> Spanned<V>

Returns a duplicate 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<V: Debug> Debug for Spanned<V>

Source§

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

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

impl<V> Deref for Spanned<V>

Source§

type Target = V

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<'de, V: Deserialize<'de>> Deserialize<'de> for Spanned<V>

Source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<V: Display> Display for Spanned<V>

Source§

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

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

impl<V> From<V> for Spanned<V>

Source§

fn from(v: V) -> Self

Converts to this type from the input type.
Source§

impl<V: Hash> Hash for Spanned<V>

Source§

fn hash<H: Hasher>(&self, hasher: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<'a, K: Hash + Ord + 'a, V: 'a> IntoIterator for &'a Spanned<Map<K, V>>

Source§

type Item = (&'a K, &'a V)

The type of the elements being iterated over.
Source§

type IntoIter = <&'a IndexMap<K, V> as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<'a, K: Hash + Ord + 'a, V: 'a> IntoIterator for &'a mut Spanned<Map<K, V>>

Source§

type Item = (&'a K, &'a mut V)

The type of the elements being iterated over.
Source§

type IntoIter = <&'a mut IndexMap<K, V> as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<K: Hash + Ord, V> IntoIterator for Spanned<Map<K, V>>

Source§

type Item = (K, V)

The type of the elements being iterated over.
Source§

type IntoIter = <IndexMap<K, V> as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<V: Ord> Ord for Spanned<V>

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<V: PartialEq> PartialEq for Spanned<V>

Source§

fn eq(&self, other: &Self) -> 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<V: PartialOrd> PartialOrd for Spanned<V>

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<V: Eq> Eq for Spanned<V>

Auto Trait Implementations§

§

impl<V> Freeze for Spanned<V>
where V: Freeze,

§

impl<V> RefUnwindSafe for Spanned<V>
where V: RefUnwindSafe,

§

impl<V> Send for Spanned<V>
where V: Send,

§

impl<V> Sync for Spanned<V>
where V: Sync,

§

impl<V> Unpin for Spanned<V>
where V: Unpin,

§

impl<V> UnwindSafe for Spanned<V>
where V: UnwindSafe,

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<!> for T

Source§

fn from(t: !) -> T

Converts to this type from the input type.
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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,