Trait chumsky::chain::Chain[][src]

pub trait Chain<T> {
    fn len(&self) -> usize;
fn append_to(self, v: &mut Vec<T>); }
Expand description

A utility trait that facilitates chaining parser outputs together into Vecs.

Required methods

The number of items that this chain link consists of.

Append the elements in this link to the chain.

Implementations on Foreign Types

Implementors