[][src]Enum full_moon::tokenizer::TokenReference

pub enum TokenReference<'a> {
    // some variants omitted
}

A reference to a token used by Ast's. Dereferences to a Token

Methods

impl<'a> TokenReference<'a>[src]

pub fn set_token_type(&mut self, new_token_type: TokenType<'a>)[src]

Sets the type of token. Note that positions will not update after using this function. If you need them to, call Ast::update_positions

Methods from Deref<Target = Token<'a>>

pub fn start_position(&self) -> Position[src]

The position a token begins at

pub fn end_position(&self) -> Position[src]

The position a token ends at

pub fn token_type(&self) -> AtomicRef<TokenType<'a>>[src]

The type of token as well as the data needed to represent it If you don't need any other information, use token_kind instead.

pub fn token_kind(&self) -> TokenKind[src]

The kind of token with no additional data. If you need any information such as idenitfier names, use token_type instead.

Trait Implementations

impl<'a, '_> Borrow<Token<'a>> for &'_ TokenReference<'a>[src]

impl<'a> Clone for TokenReference<'a>[src]

impl<'a> Debug for TokenReference<'a>[src]

impl<'a> Deref for TokenReference<'a>[src]

type Target = Token<'a>

The resulting type after dereferencing.

impl<'de: 'a, 'a> Deserialize<'de> for TokenReference<'a>[src]

impl<'a> Display for TokenReference<'a>[src]

impl<'a> Eq for TokenReference<'a>[src]

impl<'a> Node for TokenReference<'a>[src]

impl<'a> Ord for TokenReference<'a>[src]

impl<'_> Owned for TokenReference<'_>[src]

type Owned = TokenReference<'static>

What an owned version of the object looks like. Usually contains a 'static lifetime.

impl<'a> PartialEq<TokenReference<'a>> for TokenReference<'a>[src]

impl<'a> PartialOrd<TokenReference<'a>> for TokenReference<'a>[src]

impl<'a> Serialize for TokenReference<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for TokenReference<'a>

impl<'a> Send for TokenReference<'a>

impl<'a> Sync for TokenReference<'a>

impl<'a> Unpin for TokenReference<'a>

impl<'a> !UnwindSafe for TokenReference<'a>

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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> ToString for T where
    T: Display + ?Sized
[src]

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.