pub trait Widget {
// Required method
fn create_graphemes(&self, width: u16, height: u16) -> StyledGraphemes;
}Required Methods§
Sourcefn create_graphemes(&self, width: u16, height: u16) -> StyledGraphemes
fn create_graphemes(&self, width: u16, height: u16) -> StyledGraphemes
Creates styled graphemes with the given width and height.