Struct jmespath::JmespathError [] [src]

pub struct JmespathError {
    pub offset: usize,
    pub line: usize,
    pub column: usize,
    pub expression: String,
    pub reason: ErrorReason,
}

JMESPath error.

Fields

Absolute character position.

Line number of the coordinate.

Column of the line number.

Expression being evaluated.

Error reason information.

Methods

impl JmespathError
[src]

Create a new JMESPath Error.

Create a new JMESPath Error from a Context struct.

Trait Implementations

impl Clone for JmespathError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JmespathError
[src]

Formats the value using the given formatter.

impl PartialEq for JmespathError
[src]

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

This method tests for !=.

impl Display for JmespathError
[src]

Formats the value using the given formatter. Read more