Struct ttf_parser::RawFace
source · [−]pub struct RawFace<'a> { /* private fields */ }
Expand description
A raw font face.
You are probably looking for Face
. This is a low-level type.
Unlike Face
, RawFace
parses only face table records.
Meaning all you can get from this type is a raw (&[u8]
) data of a requested table.
Then you can either parse just a singe table from a font/face or populate RawFaceTables
manually before passing it to Face::from_raw_tables
.
Implementations
sourceimpl<'a> RawFace<'a>
impl<'a> RawFace<'a>
sourcepub fn from_slice(data: &'a [u8], index: u32) -> Result<Self, FaceParsingError>
pub fn from_slice(data: &'a [u8], index: u32) -> Result<Self, FaceParsingError>
Creates a new RawFace
from a raw data.
index
indicates the specific font face in a font collection.
Use fonts_in_collection
to get the total number of font faces.
Set to 0 if unsure.
While we do reuse FaceParsingError
, No*Table
errors will not be throws.
Trait Implementations
impl<'a> Copy for RawFace<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for RawFace<'a>
impl<'a> Send for RawFace<'a>
impl<'a> Sync for RawFace<'a>
impl<'a> Unpin for RawFace<'a>
impl<'a> UnwindSafe for RawFace<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more