Struct juniper::parser::SourcePosition [] [src]

pub struct SourcePosition {
    // some fields omitted
}

A reference to a line and column in an input source file

Methods

impl SourcePosition
[src]

The index of the character in the input source

Zero-based index. Take a substring of the original source starting at this index to access the item pointed to by this SourcePosition.

The line of the character in the input source

Zero-based index: the first line is line zero.

The column of the character in the input source

Zero-based index: the first column is column zero.

Trait Implementations

impl Debug for SourcePosition
[src]

Formats the value using the given formatter.

impl Clone for SourcePosition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SourcePosition
[src]

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

This method tests for !=.

impl Eq for SourcePosition
[src]

impl PartialOrd for SourcePosition
[src]

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

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for SourcePosition
[src]

This method returns an Ordering between self and other. Read more

impl Hash for SourcePosition
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl ToJson for SourcePosition
[src]

Converts the value of self to an instance of JSON