Struct syntex_syntax::codemap::NameAndSpan [] [src]

pub struct NameAndSpan {
    pub format: ExpnFormat,
    pub allow_internal_unstable: bool,
    pub span: Option<Span>,
}

Fields

format: ExpnFormat

The format with which the macro was invoked.

allow_internal_unstable: bool

Whether the macro is allowed to use #[unstable]/feature-gated features internally without forcing the whole crate to opt-in to them.

span: Option<Span>

The span of the macro definition itself. The macro may not have a sensible definition span (e.g. something defined completely inside libsyntax) in which case this is None.

Methods

impl NameAndSpan
[src]

fn name(&self) -> Name

Trait Implementations

impl Debug for NameAndSpan
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Hash for NameAndSpan
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl Clone for NameAndSpan
[src]

fn clone(&self) -> NameAndSpan

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more