(&self, text: &str)
| 53 | } |
| 54 | |
| 55 | pub fn layout(&self, text: &str) -> Layout<Brush> { |
| 56 | self.shaper |
| 57 | .borrow_mut() |
| 58 | .layout(text, &self.default_text_styles) |
| 59 | } |
| 60 | |
| 61 | pub fn layout_within(&self, text: &str, max_advance: f32) -> Layout<Brush> { |
| 62 | self.shaper |
nothing calls this directly
no outgoing calls
no test coverage detected