Struct read_fonts::FontRef

source ·
pub struct FontRef<'a> {
    pub table_directory: TableDirectory<'a>,
    /* private fields */
}
Expand description

Reference to an in-memory font.

This is a simple implementation of the TableProvider trait backed by a borrowed slice containing font data.

Fields§

§table_directory: TableDirectory<'a>

Implementations§

source§

impl<'a> FontRef<'a>

source

pub fn new(data: &'a [u8]) -> Result<Self, ReadError>

Creates a new reference to an in-memory font backed by the given data.

The data must be a single font (not a font collection) and must begin with a table directory to be considered valid.

To load a font from a font collection, use FontRef::from_index instead.

source

pub fn from_index(data: &'a [u8], index: u32) -> Result<Self, ReadError>

Creates a new reference to an in-memory font at the specified index backed by the given data.

The data slice must begin with either a table directory or a ttc header to be considered valid.

In other words, this accepts either font collection (ttc) or single font (ttf/otf) files. If a single font file is provided, the index parameter must be 0.

source

pub fn table_data(&self, tag: Tag) -> Option<FontData<'a>>

Returns the data for the table with the specified tag, if present.

Trait Implementations§

source§

impl<'a> Clone for FontRef<'a>

source§

fn clone(&self) -> FontRef<'a>

Returns a copy 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<'a> TableProvider<'a> for FontRef<'a>

source§

fn data_for_tag(&self, tag: Tag) -> Option<FontData<'a>>

source§

fn expect_data_for_tag(&self, tag: Tag) -> Result<FontData<'a>, ReadError>

source§

fn expect_table<T: TopLevelTable + FontRead<'a>>(&self) -> Result<T, ReadError>

source§

fn head(&self) -> Result<Head<'a>, ReadError>

source§

fn name(&self) -> Result<Name<'a>, ReadError>

source§

fn hhea(&self) -> Result<Hhea<'a>, ReadError>

source§

fn vhea(&self) -> Result<Vhea<'a>, ReadError>

source§

fn hmtx(&self) -> Result<Hmtx<'a>, ReadError>

source§

fn vmtx(&self) -> Result<Vmtx<'a>, ReadError>

source§

fn fvar(&self) -> Result<Fvar<'a>, ReadError>

source§

fn avar(&self) -> Result<Avar<'a>, ReadError>

source§

fn hvar(&self) -> Result<Hvar<'a>, ReadError>

source§

fn vvar(&self) -> Result<Vvar<'a>, ReadError>

source§

fn mvar(&self) -> Result<Mvar<'a>, ReadError>

source§

fn maxp(&self) -> Result<Maxp<'a>, ReadError>

source§

fn os2(&self) -> Result<Os2<'a>, ReadError>

source§

fn post(&self) -> Result<Post<'a>, ReadError>

source§

fn loca(&self, is_long: impl Into<Option<bool>>) -> Result<Loca<'a>, ReadError>

is_long can be optionally provided, if known, otherwise we look it up in head.
source§

fn glyf(&self) -> Result<Glyf<'a>, ReadError>

source§

fn gvar(&self) -> Result<Gvar<'a>, ReadError>

source§

fn cvar(&self) -> Result<Cvar<'a>, ReadError>

source§

fn cff(&self) -> Result<Cff<'a>, ReadError>

source§

fn cff2(&self) -> Result<Cff2<'a>, ReadError>

source§

fn cmap(&self) -> Result<Cmap<'a>, ReadError>

source§

fn gdef(&self) -> Result<Gdef<'a>, ReadError>

source§

fn gpos(&self) -> Result<Gpos<'a>, ReadError>

source§

fn gsub(&self) -> Result<Gsub<'a>, ReadError>

source§

fn colr(&self) -> Result<Colr<'a>, ReadError>

source§

fn cpal(&self) -> Result<Cpal<'a>, ReadError>

source§

fn cblc(&self) -> Result<Cblc<'a>, ReadError>

source§

fn cbdt(&self) -> Result<Cbdt<'a>, ReadError>

source§

fn eblc(&self) -> Result<Eblc<'a>, ReadError>

source§

fn ebdt(&self) -> Result<Ebdt<'a>, ReadError>

source§

fn sbix(&self) -> Result<Sbix<'a>, ReadError>

source§

fn stat(&self) -> Result<Stat<'a>, ReadError>

Auto Trait Implementations§

§

impl<'a> Freeze for FontRef<'a>

§

impl<'a> RefUnwindSafe for FontRef<'a>

§

impl<'a> Send for FontRef<'a>

§

impl<'a> Sync for FontRef<'a>

§

impl<'a> Unpin for FontRef<'a>

§

impl<'a> UnwindSafe for FontRef<'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> ToOwned for T
where T: Clone,

§

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