[][src]Enum bracket::lexer::Token

pub enum Token {
    Block(BlockSpan),
    RawComment(RawCommentSpan),
    RawStatement(RawStatementSpan),
    Comment(CommentSpan),
    Parameters(ParametersSpan),
    DoubleQuoteString(DoubleQuoteStringSpan),
    SingleQuoteString(SingleQuoteStringSpan),
    Array(ArraySpan),
    Link(LinkSpan),
}

Enumeration of the token types.

Variants

Block(BlockSpan)

Block token.

RawComment(RawCommentSpan)

Raw comment token.

RawStatement(RawStatementSpan)

Raw statement token.

Comment(CommentSpan)

Comment token.

Parameters(ParametersSpan)

Token for call parameters.

DoubleQuoteString(DoubleQuoteStringSpan)

Token for a double-quoted string literal.

SingleQuoteString(SingleQuoteStringSpan)

Token for a single-quoted string literal.

Array(ArraySpan)

Token for a raw square bracket literal.

Token for links.

Implementations

impl Token[src]

pub fn span(&self) -> &Span[src]

Get the span for a token.

pub fn is_text(&self) -> bool[src]

Determine if a token should be treated as text.

pub fn is_newline(&self) -> bool[src]

Determine if a token is the newline token.

Trait Implementations

impl Clone for Token[src]

impl Debug for Token[src]

impl Eq for Token[src]

impl PartialEq<Token> for Token[src]

impl StructuralEq for Token[src]

impl StructuralPartialEq for Token[src]

Auto Trait Implementations

impl RefUnwindSafe for Token

impl Send for Token

impl Sync for Token

impl Unpin for Token

impl UnwindSafe for Token

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> DynClone for T where
    T: Clone
[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.