1use crate::{ 2 ui_solver::{ResolvedTextLayoutOptions, InlineTextLayout}, 3}; 4 5 6 7pub trait GetTextLayout { 8 fn get_text_layout(&mut self, text_layout_options: &ResolvedTextLayoutOptions) -> InlineTextLayout; 9}