pub struct TextLayoutLine {
pub ascent: f32,
pub descent: f32,
pub left: f32,
pub width: f32,
pub height: f32,
pub baseline: f32,
pub range: Range<usize>,
pub glyphs: Vec<GlyphCluster>,
}
Expand description
A line of text layout.
Fields§
§ascent: f32
The ascent of the line.
descent: f32
The descent of the line.
left: f32
The left edge of the line.
width: f32
The width of the line.
height: f32
The height of the line.
baseline: f32
The baseline of the line.
range: Range<usize>
The range of the line in the original text.
glyphs: Vec<GlyphCluster>
The glyphs in the line.
Implementations§
Trait Implementations§
Source§impl Clone for TextLayoutLine
impl Clone for TextLayoutLine
Source§fn clone(&self) -> TextLayoutLine
fn clone(&self) -> TextLayoutLine
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for TextLayoutLine
impl RefUnwindSafe for TextLayoutLine
impl Send for TextLayoutLine
impl Sync for TextLayoutLine
impl Unpin for TextLayoutLine
impl UnwindSafe for TextLayoutLine
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more