pub struct LayoutRun<'a> {
pub line_i: usize,
pub text: &'a str,
pub rtl: bool,
pub glyphs: &'a [LayoutGlyph],
pub max_ascent: f32,
pub max_descent: f32,
pub line_y: f32,
pub line_top: f32,
pub line_height: f32,
pub line_w: f32,
}
Expand description
A line of visible text for rendering
Fields§
§line_i: usize
The index of the original text line
text: &'a str
The original text line
rtl: bool
True if the original paragraph direction is RTL
glyphs: &'a [LayoutGlyph]
The array of layout glyphs to draw
max_ascent: f32
Maximum ascent of the glyphs in line
max_descent: f32
Maximum descent of the glyphs in line
line_y: f32
Y offset to baseline of line
line_top: f32
Y offset to top of line
line_height: f32
Y offset to next line
line_w: f32
Width of line
Implementations§
Source§impl LayoutRun<'_>
impl LayoutRun<'_>
Sourcepub fn highlight(
&self,
cursor_start: Cursor,
cursor_end: Cursor,
) -> Option<(f32, f32)>
pub fn highlight( &self, cursor_start: Cursor, cursor_end: Cursor, ) -> Option<(f32, f32)>
Return the pixel span Some((x_left, x_width))
of the highlighted area between cursor_start
and cursor_end
within this run, or None if the cursor range does not intersect this run.
This may return widths of zero if cursor_start == cursor_end
, if the run is empty, or if the
region’s left start boundary is the same as the cursor’s end boundary or vice versa.
pub fn cursor_from_glyph_right(&self, glyph: &LayoutGlyph) -> Cursor
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for LayoutRun<'a>
impl<'a> RefUnwindSafe for LayoutRun<'a>
impl<'a> Send for LayoutRun<'a>
impl<'a> Sync for LayoutRun<'a>
impl<'a> Unpin for LayoutRun<'a>
impl<'a> UnwindSafe for LayoutRun<'a>
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more