pub trait Chain<T>: Sealed<T> { fn len(&self) -> usize; fn append_to(self, v: &mut Vec<T>); }
A utility trait that facilitates chaining parser outputs together into Vecs.
Vec
See Parser::chain.
Parser::chain
The number of items that this chain link consists of.
Append the elements in this link to the chain.