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

create a new Extend of the correct type

accumulate the input into an accumulator

Implementations on Foreign Types

impl ExtendInto for [u8]
[src]

Important traits for Vec<u8>
[src]

[src]

impl ExtendInto for str
[src]

[src]

[src]

impl ExtendInto for char
[src]

[src]

[src]

Implementors