Struct rune::ast::Ident[][src]

pub struct Ident {
    pub token: Token,
    pub source: StringSource,
}

An identifier, like foo or Hello.“.

Fields

token: Token

The kind of the identifier.

source: StringSource

The kind of the identifier.

Implementations

impl Ident[src]

pub fn new(ident: &str) -> Self[src]

Construct a new identifier from the given string from inside of a macro context.

This constructor must only be used inside of a macro.

Panics

This will panic if it’s called outside of a macro context.

Trait Implementations

impl Clone for Ident[src]

impl Copy for Ident[src]

impl Debug for Ident[src]

impl Eq for Ident[src]

impl Parse for Ident[src]

impl PartialEq<Ident> for Ident[src]

impl Peek for Ident[src]

impl<'a> Resolve<'a> for Ident[src]

type Output = Cow<'a, str>

The output type being resolved into.

impl ResolveOwned for Ident[src]

type Owned = String

The output type being resolved into.

impl Spanned for Ident[src]

impl StructuralEq for Ident[src]

impl StructuralPartialEq for Ident[src]

impl ToTokens 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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.