Trait domafic::processors::DomNodes [] [src]

pub trait DomNodes<Message> {
    fn process_all<'a, P: DomNodeProcessor<'a, Message>>(
        &'a self,
        acc: &mut P::Acc
    ) -> Result<(), P::Error>; }

Collection of DomNodes with a common message type

Required Methods

Processes all of the DomNodes in the given collection using processor P and accumulator acc.

Implementors