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
Concat(Vec<WordKind<C>>)Several distinct words concatenated together.
Single(WordKind<C>)A regular word.
Trait Implementations
impl<C: Debug> Debug for ComplexWordKind<C>[src]
impl<C: PartialEq> PartialEq for ComplexWordKind<C>[src]
fn eq(&self, __arg_0: &ComplexWordKind<C>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ComplexWordKind<C>) -> bool
This method tests for !=.
impl<C: Eq> Eq for ComplexWordKind<C>[src]
impl<C: Clone> Clone for ComplexWordKind<C>[src]
fn clone(&self) -> ComplexWordKind<C>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more