Struct syntex_pos::MultiSpan [] [src]

pub struct MultiSpan { /* fields omitted */ }

A collection of spans. Spans have two orthogonal attributes:

  • they can be primary spans. In this case they are the locus of the error, and would be rendered with ^^^.
  • they can have a label. In this case, the label is written next to the mark in the snippet when we render.

Methods

impl MultiSpan
[src]

Selects the first primary span (if any)

Returns all primary spans.

Replaces all occurances of one Span with another. Used to move Spans in areas that don't display well (like std macros). Returns true if replacements occurred.

Returns the strings to highlight. We always ensure that there is an entry for each of the primary spans -- for each primary span P, if there is at least one label with span P, we return those labels (marked as primary). But otherwise we return SpanLabel instances with empty labels.

Trait Implementations

impl Clone for MultiSpan
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<Span> for MultiSpan
[src]

Performs the conversion.