Struct syntax_pos::Span[][src]

#[repr(packed)]
pub struct Span(_);

A compressed span. Contains either fields of SpanData inline if they are small, or index into span interner. The primary goal of Span is to be as small as possible and fit into other structures (that's why it uses packed as well). Decoding speed is the second priority. See SpanData for the info on span fields in decoded representation.

Methods

impl Span
[src]

impl Span
[src]

Returns a new span representing an empty span at the beginning of this span

Returns a new span representing an empty span at the end of this span

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

Return true if self fully encloses other.

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

Return the source span - this is either the supplied span, or the span for the macro callsite that expanded to it.

The Span for the tokens in the previous macro expansion from which self was generated, if any

Edition of the crate from which this span came.

Return the source callee.

Returns None if the supplied span has no expansion trace, else returns the NameAndSpan for the macro definition corresponding to the source callsite.

Check if a span is "internal" to a macro in which #[unstable] items can be used (that is, a macro marked with #[allow_internal_unstable]).

Check if this span arises from a compiler desugaring of kind kind.

Return the compiler desugaring that created this span, or None if this span is not from a desugaring.

Check if a span is "internal" to a macro in which unsafe can be used without triggering the unsafe_code lint

Return a Span that would enclose both self and end.

Return a Span between the end of self to the beginning of end.

Return a Span between the beginning of self to the beginning of end.

Trait Implementations

impl Copy for Span
[src]

impl Clone for Span
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Hash for Span
[src]

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

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

impl !Send for Span
[src]

impl !Sync for Span
[src]

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

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

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Default for Span
[src]

Returns the "default value" for a type. Read more

impl UseSpecializedEncodable for Span
[src]

Defaults to returning an error (see SpecializationError).

impl UseSpecializedDecodable for Span
[src]

Defaults to returning an error (see SpecializationError).

impl Debug for Span
[src]

Formats the value using the given formatter. Read more

impl From<Span> for MultiSpan
[src]

Performs the conversion.