Enum syntax::ext::mtwt::SyntaxContext_   
                   
                       [−]
                   
               [src]
pub enum SyntaxContext_ {
    EmptyCtxt,
    Mark(Mrk, SyntaxContext),
    Rename(Ident, Name, SyntaxContext),
    IllegalCtxt,
}Unstable (
rustc_private)Variants
EmptyCtxtUnstable (
rustc_private)Mark(Mrk, SyntaxContext)Unstable (
rustc_private)Rename(Ident, Name, SyntaxContext)Unstable (
rustc_private)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.
IllegalCtxtUnstable (
rustc_private)actually, IllegalCtxt may not be necessary.
Trait Implementations
Derived Implementations
impl Clone for SyntaxContext_[src]
fn clone(&self) -> SyntaxContext_
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
impl Copy for SyntaxContext_[src]
impl Debug for SyntaxContext_[src]
impl Hash for SyntaxContext_[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: Hasher1.3.0
Feeds a slice of this type into the state provided.
impl Decodable for SyntaxContext_[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<SyntaxContext_, __D::Error>
impl Encodable for SyntaxContext_[src]
impl PartialEq for SyntaxContext_[src]
fn eq(&self, __arg_0: &SyntaxContext_) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &SyntaxContext_) -> bool
This method tests for !=.