<link rel="stylesheet" href="../noscript1.34.1.css">

1.29.0[][src]Struct proc_macro::Span

pub struct Span(_);

A region of source code, along with macro expansion information.

Methods

impl Span[src]

pub fn def_site() -> Span[src]

🔬 This is a nightly-only experimental API. (proc_macro_def_site #54724)

A span that resolves at the macro definition site.

pub fn call_site() -> Span[src]

The span of the invocation of the current procedural macro. Identifiers created with this span will be resolved as if they were written directly at the macro call location (call-site hygiene) and other code at the macro call site will be able to refer to them as well.

pub fn source_file(&self) -> SourceFile[src]

🔬 This is a nightly-only experimental API. (proc_macro_span #54725)

The original source file into which this span points.

pub fn parent(&self) -> Option<Span>[src]

🔬 This is a nightly-only experimental API. (proc_macro_span #54725)

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

pub fn source(&self) -> Span[src]

🔬 This is a nightly-only experimental API. (proc_macro_span #54725)

The span for the origin source code that self was generated from. If this Span wasn't generated from other macro expansions then the return value is the same as *self.

pub fn start(&self) -> LineColumn[src]

🔬 This is a nightly-only experimental API. (proc_macro_span #54725)

Gets the starting line/column in the source file for this span.

pub fn end(&self) -> LineColumn[src]

🔬 This is a nightly-only experimental API. (proc_macro_span #54725)

Gets the ending line/column in the source file for this span.

pub fn join(&self, other: Span) -> Option<Span>[src]

🔬 This is a nightly-only experimental API. (proc_macro_span #54725)

Creates a new span encompassing self and other.

Returns None if self and other are from different files.

pub fn resolved_at(&self, other: Span) -> Span[src]

🔬 This is a nightly-only experimental API. (proc_macro_span #54725)

Creates a new span with the same line/column information as self but that resolves symbols as though it were at other.

pub fn located_at(&self, other: Span) -> Span[src]

🔬 This is a nightly-only experimental API. (proc_macro_span #54725)

Creates a new span with the same name resolution behavior as self but with the line/column information of other.

pub fn eq(&self, other: &Span) -> bool[src]

🔬 This is a nightly-only experimental API. (proc_macro_span #54725)

Compares to spans to see if they're equal.

pub fn error<T: Into<String>>(self, message: T) -> Diagnostic[src]

🔬 This is a nightly-only experimental API. (proc_macro_diagnostic #54140)

Creates a new Diagnostic with the given message at the span self.

pub fn warning<T: Into<String>>(self, message: T) -> Diagnostic[src]

🔬 This is a nightly-only experimental API. (proc_macro_diagnostic #54140)

Creates a new Diagnostic with the given message at the span self.

pub fn note<T: Into<String>>(self, message: T) -> Diagnostic[src]

🔬 This is a nightly-only experimental API. (proc_macro_diagnostic #54140)

Creates a new Diagnostic with the given message at the span self.

pub fn help<T: Into<String>>(self, message: T) -> Diagnostic[src]

🔬 This is a nightly-only experimental API. (proc_macro_diagnostic #54140)

Creates a new Diagnostic with the given message at the span self.

Trait Implementations

impl MultiSpan for Span[src]

impl !Sync for Span[src]

impl Clone for Span[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl !Send for Span[src]

impl Copy for Span[src]

impl Debug for Span[src]

Prints a span in a form convenient for debugging.

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.