Struct Token

Source
pub struct Token<'a> { /* private fields */ }
Expand description

A Token is a segment of a JSON Pointer, preceded by '/' (%x2F).

Tokens can represent a key in a JSON object or an index in an array.

  • Indexes should not contain leading zeros.
  • When dealing with arrays or path expansion for assignment, "-" represent the next, non-existent index in a JSON array.

Implementations§

Source§

impl<'a> Token<'a>

Source

pub fn from_encoded(s: &'a str) -> Result<Token<'a>, InvalidEncodingError>

Constructs a Token from an RFC 6901 encoded string.

To be valid, the string must not contain any / characters, and any ~ characters must be followed by either 0 or 1.

This function does not allocate.

§Examples
assert_eq!(Token::from_encoded("~1foo~1~0bar").unwrap().decoded(), "/foo/~bar");
let err = Token::from_encoded("foo/oops~bar").unwrap_err();
assert_eq!(err.offset, 3);
§Errors

Returns InvalidEncodingError if the input string is not a valid RFC 6901 (~ must be followed by 0 or 1)

Source

pub fn new(s: impl Into<Cow<'a, str>>) -> Token<'a>

Constructs a Token from an arbitrary string.

If the string contains a / or a ~, then it will be assumed not encoded, in which case this function will encode it, allocating a new string.

If the string is already encoded per RFC 6901, use Self::from_encoded instead, otherwise it will end up double-encoded.

§Examples
assert_eq!(Token::new("/foo/~bar").encoded(), "~1foo~1~0bar");
Source

pub fn into_owned(self) -> Token<'static>

Converts into an owned copy of this token.

If the token is not already owned, this will clone the referenced string slice.

Source

pub fn to_owned(&self) -> Token<'static>

Extracts an owned copy of this token.

If the token is not already owned, this will clone the referenced string slice.

This method is like Self::into_owned, except it doesn’t take ownership of the original Token.

Source

pub fn encoded(&self) -> &str

Returns the encoded string representation of the Token.

§Examples
assert_eq!(Token::new("~bar").encoded(), "~0bar");
Source

pub fn decoded(&self) -> Cow<'_, str>

Returns the decoded string representation of the Token.

§Examples
assert_eq!(Token::new("~bar").decoded(), "~bar");
Source

pub fn to_index(&self) -> Result<Index, ParseIndexError>

Attempts to parse the given Token as an array index.

Per RFC 6901, the acceptable values are non-negative integers and the - character, which stands for the next, non-existent member after the last array element.

§Examples
assert_eq!(Token::new("-").to_index(), Ok(Index::Next));
assert_eq!(Token::new("0").to_index(), Ok(Index::Num(0)));
assert_eq!(Token::new("2").to_index(), Ok(Index::Num(2)));
assert!(Token::new("a").to_index().is_err());
assert!(Token::new("-1").to_index().is_err());
§Errors

Returns ParseIndexError if the token is not a valid array index.

Trait Implementations§

Source§

impl<'a> Clone for Token<'a>

Source§

fn clone(&self) -> Token<'a>

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> Debug for Token<'a>

Source§

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

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

impl Display for Token<'_>

Source§

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

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

impl<'a> From<&'a String> for Token<'a>

Source§

fn from(value: &'a String) -> Token<'a>

Converts to this type from the input type.
Source§

impl<'a> From<&Token<'a>> for Token<'a>

Source§

fn from(value: &Token<'a>) -> Token<'a>

Converts to this type from the input type.
Source§

impl<'a> From<&'a str> for Token<'a>

Source§

fn from(value: &'a str) -> Token<'a>

Converts to this type from the input type.
Source§

impl From<String> for Token<'static>

Source§

fn from(value: String) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<Token<'_>> for PointerBuf

Source§

fn from(t: Token<'_>) -> PointerBuf

Converts to this type from the input type.
Source§

impl From<i128> for Token<'static>

Source§

fn from(v: i128) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<i16> for Token<'static>

Source§

fn from(v: i16) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<i32> for Token<'static>

Source§

fn from(v: i32) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<i64> for Token<'static>

Source§

fn from(v: i64) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<i8> for Token<'static>

Source§

fn from(v: i8) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<isize> for Token<'static>

Source§

fn from(v: isize) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<u128> for Token<'static>

Source§

fn from(v: u128) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<u16> for Token<'static>

Source§

fn from(v: u16) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<u32> for Token<'static>

Source§

fn from(v: u32) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<u64> for Token<'static>

Source§

fn from(v: u64) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<u8> for Token<'static>

Source§

fn from(v: u8) -> Token<'static>

Converts to this type from the input type.
Source§

impl From<usize> for Token<'static>

Source§

fn from(v: usize) -> Token<'static>

Converts to this type from the input type.
Source§

impl<'a> Hash for Token<'a>

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

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> Ord for Token<'a>

Source§

fn cmp(&self, other: &Token<'a>) -> 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<'a> PartialEq for Token<'a>

Source§

fn eq(&self, other: &Token<'a>) -> 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> PartialOrd for Token<'a>

Source§

fn partial_cmp(&self, other: &Token<'a>) -> 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<'a> Eq for Token<'a>

Source§

impl<'a> StructuralPartialEq for Token<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Token<'a>

§

impl<'a> RefUnwindSafe for Token<'a>

§

impl<'a> Send for Token<'a>

§

impl<'a> Sync for Token<'a>

§

impl<'a> Unpin for Token<'a>

§

impl<'a> UnwindSafe for Token<'a>

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 u8)

🔬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> 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.