Struct oak_runtime::file_map_stream::Span [] [src]

pub struct Span {
    pub lo: BytePos,
    pub hi: BytePos,
    pub expn_id: ExpnId,
}

Spans represent a region of code, used for error reporting. Positions in spans are absolute positions from the beginning of the codemap, not positions relative to FileMaps. Methods on the CodeMap can be used to relate spans back to the original source. You must be careful if the span crosses more than one file - you will not be able to use many of the functions on spans in codemap and you cannot assume that the length of the span = hi - lo; there may be space in the BytePos range between files.

Fields

Information about where the macro came from, if this piece of code was created by a macro expansion.

Methods

impl Span
[src]

Returns a new span representing just the end-point of this span

Returns self if self is not the dummy span, and other otherwise.

Return true if the spans are equal with regards to the source text.

Use this instead of == when either span could be generated code, and you only care that they point to the same bytes of source text.

Returns Some(span), where the start is trimmed by the end of other

Trait Implementations

impl Copy for Span
[src]

impl Ord for Span
[src]

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

impl Decodable for Span
[src]

impl Eq for Span
[src]

impl Hash for Span
[src]

impl Clone for Span
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Span
[src]

Formats the value using the given formatter.

impl Encodable for Span
[src]

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

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

This method tests for !=.