Struct owned_ttf_parser::RawFace [−][src]
pub struct RawFace<'a> { /* fields omitted */ }
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
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
Auto Trait Implementations
impl<'a> RefUnwindSafe for RawFace<'a>
impl<'a> UnwindSafe for RawFace<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more