pub trait TextProvider<'a> {
    type I: 'a + Iterator
    where
        <Self::I as Iterator>::Item == &'a [u8]
; fn text(&mut self, node: Node<'_>) -> Self::I; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors