Struct proc_macro::Span 1.29.0[−][src]
pub struct Span(_);
Expand description
A region of source code, along with macro expansion information.
Implementations
impl Span[src]
impl Span[src]pub fn call_site() -> Span[src]
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 mixed_site() -> Span1.45.0[src]
pub fn mixed_site() -> Span1.45.0[src]A span that represents macro_rules hygiene, and sometimes resolves at the macro
definition site (local variables, labels, $crate) and sometimes at the macro
call site (everything else).
The span location is taken from the call-site.
pub fn source_file(&self) -> SourceFile[src]
pub fn source_file(&self) -> SourceFile[src]The original source file into which this span points.
pub fn parent(&self) -> Option<Span>[src]
pub fn parent(&self) -> Option<Span>[src]The Span for the tokens in the previous macro expansion from which
self was generated from, if any.
pub fn source(&self) -> Span[src]
pub fn source(&self) -> Span[src]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]
pub fn start(&self) -> LineColumn[src]Gets the starting line/column in the source file for this span.
pub fn end(&self) -> LineColumn[src]
pub fn end(&self) -> LineColumn[src]Gets the ending line/column in the source file for this span.
pub fn join(&self, other: Span) -> Option<Span>[src]
pub fn join(&self, other: Span) -> Option<Span>[src]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) -> Span1.45.0[src]
pub fn resolved_at(&self, other: Span) -> Span1.45.0[src]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) -> Span1.45.0[src]
pub fn located_at(&self, other: Span) -> Span1.45.0[src]Creates a new span with the same name resolution behavior as self but
with the line/column information of other.
pub fn source_text(&self) -> Option<String>[src]
pub fn source_text(&self) -> Option<String>[src]Returns the source text behind a span. This preserves the original source code, including spaces and comments. It only returns a result if the span corresponds to real source code.
Note: The observable result of a macro should only rely on the tokens and not on this source text. The result of this function is a best effort to be used for diagnostics only.
pub fn error<T: Into<String>>(self, message: T) -> Diagnostic[src]
pub fn error<T: Into<String>>(self, message: T) -> Diagnostic[src]Creates a new Diagnostic with the given message at the span
self.
pub fn warning<T: Into<String>>(self, message: T) -> Diagnostic[src]
pub fn warning<T: Into<String>>(self, message: T) -> Diagnostic[src]Creates a new Diagnostic with the given message at the span
self.
pub fn note<T: Into<String>>(self, message: T) -> Diagnostic[src]
pub fn note<T: Into<String>>(self, message: T) -> Diagnostic[src]Creates a new Diagnostic with the given message at the span
self.
Trait Implementations
impl Copy for Span[src]
impl !Send for Span[src]
impl !Sync for Span[src]
Auto Trait Implementations
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into #41263)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more