Enum syntax::ext::mtwt::SyntaxContext_Unstable [-] [+] [src]

pub enum SyntaxContext_ {
    EmptyCtxt,
    Mark(Mrk, SyntaxContext),
    Rename(Ident, Name, SyntaxContext),
    IllegalCtxt,
}

Variants

EmptyCtxt
Mark
Rename

flattening the name and syntaxcontext into the rename... HIDDEN INVARIANTS: 1) the first name in a Rename node can only be a programmer-supplied name. 2) Every Rename node with a given Name in the "to" slot must have the same name and context in the "from" slot. In essence, they're all pointers to a single "rename" event node.

IllegalCtxt

actually, IllegalCtxt may not be necessary.

Trait Implementations

Derived Implementations

impl Copy for SyntaxContext_

impl Debug for SyntaxContext_

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

impl Hash for SyntaxContext_

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

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

impl Decodable for SyntaxContext_

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<SyntaxContext_, Error>

impl Encodable for SyntaxContext_

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), Error>

impl PartialEq for SyntaxContext_

fn eq(&self, __arg_0: &SyntaxContext_) -> bool

fn ne(&self, __arg_0: &SyntaxContext_) -> bool