Struct syntax::ast::Ident
[−]
[src]
pub struct Ident { pub name: Name, pub ctxt: SyntaxContext, }
Unstable (
rustc_private
)An identifier contains a Name (index into the interner table) and a SyntaxContext to track renaming and macro expansion per Flatt et al., "Macros That Work Together"
Fields
name: Name
Unstable (
rustc_private
)ctxt: SyntaxContext
Unstable (
rustc_private
)Methods
impl Ident
[src]
fn new(name: Name, ctxt: SyntaxContext) -> Ident
const fn with_empty_ctxt(name: Name) -> Ident
Trait Implementations
impl PartialEq for Ident
[src]
fn eq(&self, other: &Ident) -> bool
[−]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[−]
This method tests for !=
.
impl Hash for Ident
[src]
fn hash<H: Hasher>(&self, state: &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.