Struct ttf_parser::gpos::HintingDevice
source · pub struct HintingDevice<'a> {
start_size: u16,
end_size: u16,
delta_format: u16,
delta_values: LazyArray16<'a, u16>,
}
Expand description
A Device Table hinting values.
Fields§
§start_size: u16
§end_size: u16
§delta_format: u16
§delta_values: LazyArray16<'a, u16>
Implementations§
source§impl HintingDevice<'_>
impl HintingDevice<'_>
sourcepub fn x_delta(
&self,
units_per_em: u16,
pixels_per_em: Option<(u16, u16)>,
) -> Option<i32>
pub fn x_delta( &self, units_per_em: u16, pixels_per_em: Option<(u16, u16)>, ) -> Option<i32>
Returns X-axis delta.
sourcepub fn y_delta(
&self,
units_per_em: u16,
pixels_per_em: Option<(u16, u16)>,
) -> Option<i32>
pub fn y_delta( &self, units_per_em: u16, pixels_per_em: Option<(u16, u16)>, ) -> Option<i32>
Returns Y-axis delta.
fn get_delta(&self, ppem: u16, scale: u16) -> Option<i32>
Trait Implementations§
source§impl<'a> Clone for HintingDevice<'a>
impl<'a> Clone for HintingDevice<'a>
source§fn clone(&self) -> HintingDevice<'a>
fn clone(&self) -> HintingDevice<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HintingDevice<'_>
impl Debug for HintingDevice<'_>
impl<'a> Copy for HintingDevice<'a>
Auto Trait Implementations§
impl<'a> Freeze for HintingDevice<'a>
impl<'a> RefUnwindSafe for HintingDevice<'a>
impl<'a> Send for HintingDevice<'a>
impl<'a> Sync for HintingDevice<'a>
impl<'a> Unpin for HintingDevice<'a>
impl<'a> UnwindSafe for HintingDevice<'a>
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