Struct kailua_env::Pos [] [src]

pub struct Pos { /* fields omitted */ }

A position in the originating Source.

The position is composed of the Unit and an offset to the corresponding source. An offset ranges from 0 to the length of that source (inclusive). The actual meaning of the offset is resolved by Source; it can be either a byte offset or a two-byte word offset (for the FFI compatibility). The "source-independent" units have no corresponding source and the offset is always zero.

Methods

impl Pos
[src]

Trait Implementations

impl Copy for Pos
[src]

impl Clone for Pos
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Pos
[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 Pos
[src]

impl PartialOrd for Pos
[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 Pos
[src]

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

impl Hash for Pos
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Pos
[src]

In the debugging output the position is denoted @_ or @unit/off. It is only displayed when the alternate flag is enabled.

Formats the value using the given formatter.