Enum conch_parser::ast::builder::ComplexWordKind [] [src]

pub enum ComplexWordKind<C> {
    Concat(Vec<WordKind<C>>),
    Single(WordKind<C>),
}

An indicator to the builder what kind of complex word was parsed.

Variants

Several distinct words concatenated together.

A regular word.

Trait Implementations

impl<C: Debug> Debug for ComplexWordKind<C>
[src]

Formats the value using the given formatter.

impl<C: PartialEq> PartialEq for ComplexWordKind<C>
[src]

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

This method tests for !=.

impl<C: Eq> Eq for ComplexWordKind<C>
[src]

impl<C: Clone> Clone for ComplexWordKind<C>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more