1
2
3
4
5
6
7
8
9
use crate::{
    ui_solver::{ResolvedTextLayoutOptions, InlineTextLayout},
};



pub trait GetTextLayout {
    fn get_text_layout(&mut self, text_layout_options: &ResolvedTextLayoutOptions) -> InlineTextLayout;
}