GlyphRun

Struct GlyphRun 

Source
pub struct GlyphRun<'a> { /* private fields */ }
Expand description

A sequence of positioned glyphs with effects

Yielded by TextDisplay::runs.

Implementations§

Source§

impl<'a> GlyphRun<'a>

Source

pub fn face_id(&self) -> FaceId

Get the font face used for this run

Source

pub fn dpem(&self) -> f32

Get the font size used for this run

Units are dots-per-Em (see crate::fonts).

Source

pub fn glyphs(&self) -> impl Iterator<Item = Glyph> + '_

Get an iterator over glyphs for this run

This method ignores effects; if you want those call Self::glyphs_with_effects instead.

Source

pub fn glyphs_with_effects<F, G>(&self, f: F, g: G)
where F: FnMut(Glyph, u16), G: FnMut(f32, f32, f32, f32, u16),

Yield glyphs and effects for this run

The callback f receives glyph, e where e is the Effect::e value (defaults to 0).

The callback g receives positioning for each underline/strike-through segment: x1, x2, y_top, h where h is the thickness (height). Note that it is possible to have h < 1.0 and y_top, y_top + h to round to the same number; the renderer is responsible for ensuring such lines are actually visible. The last parameter is e as for f.

Note: this is more computationally expensive than GlyphRun::glyphs, so you may prefer to call that. Optionally one may choose to cache the result, though this is not really necessary.

Auto Trait Implementations§

§

impl<'a> Freeze for GlyphRun<'a>

§

impl<'a> RefUnwindSafe for GlyphRun<'a>

§

impl<'a> Send for GlyphRun<'a>

§

impl<'a> Sync for GlyphRun<'a>

§

impl<'a> Unpin for GlyphRun<'a>

§

impl<'a> UnwindSafe for GlyphRun<'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<S, T> Cast<T> for S
where T: Conv<S>,

Source§

fn cast(self) -> T

Cast from Self to T Read more
Source§

fn try_cast(self) -> Result<T, Error>

Try converting from Self to T Read more
Source§

impl<S, T> CastApprox<T> for S
where T: ConvApprox<S>,

Source§

fn try_cast_approx(self) -> Result<T, Error>

Try approximate conversion from Self to T Read more
Source§

fn cast_approx(self) -> T

Cast approximately from Self to T Read more
Source§

impl<S, T> CastFloat<T> for S
where T: ConvFloat<S>,

Source§

fn cast_trunc(self) -> T

Cast to integer, truncating Read more
Source§

fn cast_nearest(self) -> T

Cast to the nearest integer Read more
Source§

fn cast_floor(self) -> T

Cast the floor to an integer Read more
Source§

fn cast_ceil(self) -> T

Cast the ceiling to an integer Read more
Source§

fn try_cast_trunc(self) -> Result<T, Error>

Try converting to integer with truncation Read more
Source§

fn try_cast_nearest(self) -> Result<T, Error>

Try converting to the nearest integer Read more
Source§

fn try_cast_floor(self) -> Result<T, Error>

Try converting the floor to an integer Read more
Source§

fn try_cast_ceil(self) -> Result<T, Error>

Try convert the ceiling to an integer 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>,

Source§

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>,

Source§

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.