Enum rdf::reader::lexer::token::Token [] [src]

pub enum Token {
    Comment(String),
    Literal(String),
    LiteralWithUrlDatatype(StringString),
    LiteralWithQNameDatatype(StringStringString),
    LiteralWithLanguageSpecification(StringString),
    Uri(String),
    BlankNode(String),
    TripleDelimiter,
    PrefixDirective(StringString),
    BaseDirective(String),
    QName(StringString),
    Prefix(String),
    KeywordA,
    PredicateListDelimiter,
    ObjectListDelimiter,
    CollectionStart,
    CollectionEnd,
    UnlabeledBlankNodeStart,
    UnlabeledBlankNodeEnd,
    EndOfInput,
}

Tokens are produces by RDF lexers.

Variants

Trait Implementations

impl Debug for Token
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Token
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Clone for Token
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Token

impl Sync for Token