Enum json_pointer::ParseError [] [src]

pub enum ParseError {
    InvalidEscape(String),
    NoLeadingSlash,
}

An error that can be encountered when parsing.

Variants

An invalid escape sequence was encountered, either a ~ escape or a % escape.

An error caused by not having a leading slash on the JSON pointer.

For example, the string a/b/c is not a valid JSON pointer, while /a/b/c is.

Trait Implementations

impl Clone for ParseError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ParseError
[src]

Formats the value using the given formatter.

impl PartialEq for ParseError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.