Trait nom::ExtendInto
[−]
[src]
pub trait ExtendInto {
type Item;
type Extender: Extend<Self::Item>;
fn new_builder(&self) -> Self::Extender;
fn extend_into(&self, acc: &mut Self::Extender);
}abtracts something which can extend an Extend
Associated Types
Required Methods
fn new_builder(&self) -> Self::Extender
create a new Extend of the correct type
fn extend_into(&self, acc: &mut Self::Extender)
accumulate the input into an accumulator