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

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

Collection of DomNodes with a common message type

Associated Types

Type of messages published by the nodes' listeners in response to events

Required Methods

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

Implementors