pub trait IterInlines<'a> {
    type Iter: Iterator<Item = &'a Inline>;
    type IterMut: Iterator<Item = &'a mut Inline>;
    fn iter_inlines(&'a self) -> Self::Iter;
fn iter_inlines_mut(&'a mut self) -> Self::IterMut; }
Expand description

A trait to iterate over the immediately contained inlines in a type.

Associated Types

Required methods

Returns an iterator over the immediately contained inlines.

Returns an iterator over the immediately contained inlines, allowing each inline to be modified.

Implementors