Struct epaint::text::Galley [−][src]
pub struct Galley {
pub text_style: TextStyle,
pub text: String,
pub rows: Vec<Row>,
pub size: Vec2,
}
Expand description
A collection of text locked into place.
Fields
text_style: TextStyle
The crate::TextStyle
(font) used.
text: String
The full text, including any an all \n
.
rows: Vec<Row>
Rows of text, from top to bottom.
The number of chars in all rows sum up to text.chars().count().
Note that each paragraph (pieces of text separated with \n
)
can be split up into multiple rows.
size: Vec2
Implementations
Returns a 0-width Rect.
Returns a 0-width Rect.
Cursor at the given position within the galley
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Galley
impl UnwindSafe for Galley
Blanket Implementations
Mutably borrows from an owned value. Read more