[−][src]Struct rustc_ap_rustc_ast::ast::Ident
Fields
name: Symbol
span: Span
Methods
impl Ident
[src]
pub fn new(name: Symbol, span: Span) -> Ident
[src]
Constructs a new identifier from a symbol and a span.
pub fn with_dummy_span(name: Symbol) -> Ident
[src]
Constructs a new identifier with a dummy span.
pub fn invalid() -> Ident
[src]
pub fn from_str(string: &str) -> Ident
[src]
Maps a string to an identifier with a dummy span.
pub fn from_str_and_span(string: &str, span: Span) -> Ident
[src]
Maps a string and a span to an identifier.
pub fn with_span_pos(self, span: Span) -> Ident
[src]
Replaces lo
and hi
with those from span
, but keep hygiene context.
pub fn without_first_quote(self) -> Ident
[src]
pub fn normalize_to_macros_2_0(self) -> Ident
[src]
"Normalize" ident for use in comparisons using "item hygiene".
Identifiers with same string value become same if they came from the same macro 2.0 macro
(e.g., macro
item, but not macro_rules
item) and stay different if they came from
different macro 2.0 macros.
Technically, this operation strips all non-opaque marks from ident's syntactic context.
pub fn normalize_to_macro_rules(self) -> Ident
[src]
"Normalize" ident for use in comparisons using "local variable hygiene".
Identifiers with same string value become same if they came from the same non-transparent
macro (e.g., macro
or macro_rules!
items) and stay different if they came from different
non-transparent macros.
Technically, this operation strips all transparent marks from ident's syntactic context.
pub fn as_str(self) -> SymbolStr
[src]
Convert the name to a SymbolStr
. This is a slowish operation because
it requires locking the symbol interner.
impl Ident
[src]
pub fn is_special(self) -> bool
[src]
pub fn is_used_keyword(self) -> bool
[src]
Returns true
if the token is a keyword used in the language.
pub fn is_unused_keyword(self) -> bool
[src]
Returns true
if the token is a keyword reserved for possible future use.
pub fn is_reserved(self) -> bool
[src]
Returns true
if the token is either a special identifier or a keyword.
pub fn is_path_segment_keyword(self) -> bool
[src]
A keyword or reserved identifier that can be used as a path segment.
pub fn is_raw_guess(self) -> bool
[src]
We see this identifier in a normal identifier position, like variable name or a type. How was it written originally? Did it use the raw form? Let's try to guess.
Trait Implementations
impl Clone for Ident
[src]
impl Copy for Ident
[src]
impl Debug for Ident
[src]
impl Display for Ident
[src]
This implementation is supposed to be used in error messages, so it's expected to be identical
to printing the original identifier token written in source code (token_to_string
),
except that AST identifiers don't keep the rawness flag, so we have to guess it.
impl Eq for Ident
[src]
impl Hash for Ident
[src]
fn hash<H>(&self, state: &mut H) where
H: Hasher,
[src]
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<__CTX> HashStable<__CTX> for Ident where
__CTX: HashStableContext,
[src]
__CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
[src]
impl PartialEq<Ident> for Ident
[src]
impl StructuralEq for Ident
[src]
impl UseSpecializedDecodable for Ident
[src]
impl UseSpecializedEncodable for Ident
[src]
Auto Trait Implementations
impl RefUnwindSafe for Ident
impl !Send for Ident
impl !Sync for Ident
impl Unpin for Ident
impl UnwindSafe for Ident
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Decodable for T where
T: UseSpecializedDecodable,
[src]
T: UseSpecializedDecodable,
impl<T> Encodable for T where
T: UseSpecializedEncodable + ?Sized,
[src]
T: UseSpecializedEncodable + ?Sized,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool
[src]
impl<T> Erased for T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<E> SpecializationError for E
[src]
default fn not_found<S, T>(
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
[src]
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,