[][src]Struct fungui_syntax::Position

pub struct Position {
    pub line_number: i32,
    pub column: i32,
}

The position in the source file where the the ident/value/etc was defined.

This is used to provide better debugging support when an error in encounted.

Fields

line_number: i32

The line this relates to.

This starts at line 1 (not 0)

column: i32

The column this relates to.

This starts at line 1 (not 0)

Trait Implementations

impl From<SourcePosition> for Position[src]

impl From<Position> for SourcePosition[src]

impl Default for Position[src]

impl Copy for Position[src]

impl Clone for Position[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Position[src]

impl Display for Position[src]

Auto Trait Implementations

impl Send for Position

impl Sync for Position

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.