pub struct GlyphPrepCacheMut<'a> {
pub(crate) outline_cache: &'a mut OutlineCache,
pub(crate) hinting_cache: &'a mut HintCache,
pub(crate) underline_exclusions: &'a mut Vec<(f64, f64)>,
}Expand description
Mutably borrowed caches used for preparing glyph drawing.
Fields§
§outline_cache: &'a mut OutlineCacheCaches glyph outlines.
hinting_cache: &'a mut HintCacheCaches hinting instances .
underline_exclusions: &'a mut Vec<(f64, f64)>Horizontal spans excluded from “ink-skipping” underlines.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for GlyphPrepCacheMut<'a>
impl<'a> RefUnwindSafe for GlyphPrepCacheMut<'a>
impl<'a> Send for GlyphPrepCacheMut<'a>
impl<'a> Sync for GlyphPrepCacheMut<'a>
impl<'a> Unpin for GlyphPrepCacheMut<'a>
impl<'a> UnsafeUnpin for GlyphPrepCacheMut<'a>
impl<'a> !UnwindSafe for GlyphPrepCacheMut<'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