Struct cosmic_text::LayoutRun

source ·
pub struct LayoutRun<'a> {
    pub line_i: usize,
    pub text: &'a str,
    pub rtl: bool,
    pub glyphs: &'a [LayoutGlyph],
    pub line_y: f32,
    pub line_top: 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

§line_y: f32

Y offset to baseline of line

§line_top: f32

Y offset to top of line

§line_w: f32

Width of line

Implementations§

source§

impl<'a> LayoutRun<'a>

source

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.

Trait Implementations§

source§

impl<'a> Debug for LayoutRun<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.