pub struct Ident {
pub span: Span,
// some fields omitted
}
A word of Rust code, which may be a keyword or legal variable name.
An identifier consists of at least one Unicode code point, the first of
which has the XID_Start property and the rest of which have the XID_Continue
property. An underscore may be used as the first character as long as it is
not the only character.
- The empty string is not an identifier. Use
Option<Ident>
.
- An underscore by itself is not an identifier. Use
Token![_]
instead.
- A lifetime is not an identifier. Use
syn::Lifetime
instead.
An identifier constructed with Ident::new
is permitted to be a Rust
keyword, though parsing one through its Synom
implementation rejects
Rust keywords.
A new ident can be created from a string using the Ident::from
function.
Idents produced by Ident::from
are set to resolve at the procedural macro
def site by default. A different span can be provided explicitly by using
Ident::new
.
extern crate syn;
extern crate proc_macro2;
use syn::Ident;
use proc_macro2::Span;
fn main() {
let def_ident = Ident::from("definitely");
let call_ident = Ident::new("calligraphy", Span::call_site());
println!("{} {}", def_ident, call_ident);
}
An ident can be interpolated into a token stream using the quote!
macro.
#[macro_use]
extern crate quote;
extern crate syn;
use syn::Ident;
fn main() {
let ident = Ident::from("demo");
let expanded = quote! { let #ident = 10; };
let temp_ident = Ident::from(format!("new_{}", ident));
let expanded = quote! { let #temp_ident = 10; };
}
A string representation of the ident is available through the as_ref()
and
to_string()
methods.
let ident_str = ident.as_ref();
if ident_str.len() > 60 {
println!("Very long identifier: {}", ident_str)
}
let ident_string = ident.to_string();
give_away(ident_string);
fn give_away(s: String) { }
Creates an ident with the given string representation.
Panics if the input string is neither a keyword nor a legal variable
name.
A short name of the type being parsed. Read more
Performs copy-assignment from source
. Read more
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
This method tests for self
and other
values to be equal, and is used by ==
. Read more
This method tests for !=
.
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self | 1.21.0 [src] |
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self | 1.21.0 [src] |
Compares and returns the minimum of two values. Read more
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
Feeds this value into the given [Hasher
]. Read more
Feeds a slice of this type into the given [Hasher
]. Read more
Convert self
directly into a Tokens
object. Read more
Returns a Span
covering the complete contents of this syntax tree node, or [Span::call_site()
] if this node is empty. Read more
Converts the given value to a String
. Read more
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Immutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Create an error for a missing method specialization. Defaults to panicking with type, trait & method names. S
is the encoder/decoder state type, T
is the type being encoded/decoded, and the arguments are the names of the trait and method that should've been overridden. Read more