Struct syntax_pos::MacroBacktrace[][src]

pub struct MacroBacktrace {
    pub call_site: Span,
    pub macro_decl_name: String,
    pub def_site_span: Option<Span>,
}

Fields

span where macro was applied to generate this code

name of macro that was applied (e.g., "foo!" or "#[derive(Eq)]")

span where macro was defined (if known)

Trait Implementations

impl Debug for MacroBacktrace
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations