[][src]Function nannou::ui::text::glyph::selected_rects_per_line

Important traits for SelectedRectsPerLine<'a, I>
pub fn selected_rects_per_line<'a, I>(
    lines_with_rects: I,
    font: &'a Font<'static>,
    font_size: u32,
    start: Index,
    end: Index
) -> SelectedRectsPerLine<'a, I> where
    I: Iterator<Item = (&'a str, Rect)>, 

Produces an iterator that yields iteraors yielding Rects for each selected character in each line of text within the given iterator yielding char Rects.

Given some start and end indices, only Rects for chars between these two indices will be produced.

All lines that have no selected Rects will be skipped.