Skip to main content

WordSubRun

Struct WordSubRun 

Source
pub struct WordSubRun {
    pub font: Font,
    pub text: String,
    pub glyphs: Vec<ShapedGlyph>,
    pub advance_pt: f32,
}
Expand description

One face’s slice of a per-glyph-fallback shaping result. A word shaped through shape_with_fallback produces a Vec<WordSubRun>; each sub-run is self-contained: its text is the source UTF-8 slice covered by exactly this sub-run, its glyphscluster offsets are rebased to the sub-run’s local text (so plan_embedded can build /ToUnicode without knowing about the parent word), and its advance_pt is the sum of per-glyph advances at the requested point size.

Caller emits one PDF TextRun per WordSubRun: same baseline, x-cursor advances by advance_pt between sub-runs: and PDF emit’s existing Tf switch fires naturally on the font change.

§Examples

use mos_fonts::{Base14Font, Font, WordSubRun};

let subrun = WordSubRun {
    font: Font::Base14(Base14Font::Helvetica),
    text: "A".to_owned(),
    glyphs: Vec::new(),
    advance_pt: 6.67,
};

assert_eq!(subrun.text, "A");

Fields§

§font: Font

Which face owns the glyphs in this slice. May be the primary (no fallback was needed for this span) or a fallback face that covered codepoints the primary lacked.

§text: String

Source byte slice covered by this sub-run. glyphscluster values are byte offsets into this field, not into the parent word’s text.

§glyphs: Vec<ShapedGlyph>

Shaped glyphs in visual order (LTR). Cluster offsets are local to text (rebased from the parent word’s full text). Empty for Base14 sub-runs (Base14 has no glyph stream: PDF emit goes via WinAnsi-byte encoding instead).

§advance_pt: f32

Total horizontal advance of this sub-run, in PDF user-space units. Sum of PDF-emittable glyphs[i].advance_units scaled by size_pt / units_per_em.

Trait Implementations§

Source§

impl Clone for WordSubRun

Source§

fn clone(&self) -> WordSubRun

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for WordSubRun

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<U, T> ToOwnedObj<U> for T
where U: FromObjRef<T>,

§

fn to_owned_obj(&self, data: FontData<'_>) -> U

Convert this type into T, using the provided data to resolve any offsets.
§

impl<U, T> ToOwnedTable<U> for T
where U: FromTableRef<T>,

§

fn to_owned_table(&self) -> U

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.