Enum yaccas::scanner::Token [] [src]

pub enum Token {
    Bound(String),
    Free(String),
}

An enum about the valid types of strings as input.

Variants

A string which represents an argument.

A string which represents a value or command.

Trait Implementations

impl Debug for Token
[src]

Formats the value using the given formatter.

impl PartialEq for Token
[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 Token
[src]