Struct unrest_tmp_syn::Ident [] [src]

pub struct Ident {
    pub sym: Term,
    pub span: Span,
}

A word of Rust code, such as a keyword or 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 syn::tokens::Underscore 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 an identifier with syn!(Ident) rejects Rust keywords.

Fields

Methods

impl Ident
[src]

Trait Implementations

impl Synom for Ident
[src]

impl ToTokens for Ident
[src]

Write self to the given Tokens. Read more

Convert self directly into a Tokens object. Read more

impl Copy for Ident
[src]

impl Clone for Ident
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Ident
[src]

Formats the value using the given formatter.

impl<'a> From<&'a str> for Ident
[src]

Performs the conversion.

impl From<Self_> for Ident
[src]

Performs the conversion.

impl From<CapSelf> for Ident
[src]

Performs the conversion.

impl From<Super> for Ident
[src]

Performs the conversion.

impl<'a> From<Cow<'a, str>> for Ident
[src]

Performs the conversion.

impl From<String> for Ident
[src]

Performs the conversion.

impl AsRef<str> for Ident
[src]

Performs the conversion.

impl Display for Ident
[src]

Formats the value using the given formatter. Read more

impl<T: ?Sized> PartialEq<T> for Ident where
    T: AsRef<str>, 
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Ident
[src]

impl PartialOrd for Ident
[src]

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

impl Ord for Ident
[src]

This method returns an Ordering between self and other. Read more

🔬 This is a nightly-only experimental API. (ord_max_min)

Compares and returns the maximum of two values. Read more

🔬 This is a nightly-only experimental API. (ord_max_min)

Compares and returns the minimum of two values. Read more

impl Hash for Ident
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more