[][src]Enum erl_tokenize::HiddenToken

pub enum HiddenToken {
    Comment(CommentToken),
    Whitespace(WhitespaceToken),
}

Hidden token.

"Hidden" means it has no lexical meanings.

Variants

Comment(CommentToken)Whitespace(WhitespaceToken)

Methods

impl HiddenToken[src]

pub fn text(&self) -> &str[src]

Returns the original textual representation of this token.

pub fn as_comment_token(&self) -> Option<&CommentToken>[src]

Tries to return the reference to the inner CommentToken.

pub fn as_whitespace_token(&self) -> Option<&WhitespaceToken>[src]

Tries to return the reference to the inner WhitespaceToken.

pub fn into_comment_token(self) -> Result<CommentToken, Self>[src]

Tries to return the inner CommentToken.

pub fn into_whitespace_token(self) -> Result<WhitespaceToken, Self>[src]

Tries to return the inner WhitespaceToken.

Trait Implementations

impl PositionRange for HiddenToken[src]

impl Clone for HiddenToken[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl From<CommentToken> for HiddenToken[src]

impl From<WhitespaceToken> for HiddenToken[src]

impl From<HiddenToken> for Token[src]

impl Debug for HiddenToken[src]

impl Display for HiddenToken[src]

Auto Trait Implementations

impl Send for HiddenToken

impl Sync for HiddenToken

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?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.

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]