pub struct FdEntry {
pub default_width_x: f64,
pub nominal_width_x: f64,
pub local_subrs: Vec<Vec<u8>>,
pub font_matrix: Option<[f64; 6]>,
}Expand description
Per-FD entry for CID fonts (from FDArray).
Fields§
§default_width_x: f64Default advance width for this FD.
nominal_width_x: f64Nominal advance width for this FD.
local_subrs: Vec<Vec<u8>>Local subroutines for this FD.
font_matrix: Option<[f64; 6]>Per-FD FontMatrix (None = use top-level FontMatrix).
Auto Trait Implementations§
impl Freeze for FdEntry
impl RefUnwindSafe for FdEntry
impl Send for FdEntry
impl Sync for FdEntry
impl Unpin for FdEntry
impl UnsafeUnpin for FdEntry
impl UnwindSafe for FdEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more