pub struct SpanRange {
    pub first: Span,
    pub last: Span,
}

Fields

first: Spanlast: Span

Implementations

Create a range with the first and last spans being the same.

Create a SpanRange resolving at call site.

Construct span range from a TokenStream. This method always preserves all the range.

Note

If the stream is empty, the result is SpanRange::call_site(). If the stream consists of only one TokenTree, the result is SpanRange::single_span(tt.span()) that doesn’t lose anything.

Join two span ranges. The resulting range will start at self.first and end at other.last.

Collapse the range into single span, preserving as much information as possible.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.