enum BaseOutlines<'a> {
Glyf(Outlines<'a>),
Cff(Outlines<'a>),
}Variants§
Implementations§
Source§impl<'a> BaseOutlines<'a>
impl<'a> BaseOutlines<'a>
fn glyph_count(&self) -> u32
fn font(&self) -> &FontRef<'a>
fn base_outline_kind(&self, glyph_id: GlyphId) -> Option<OutlineKind<'a>>
fn base_outline_memory(&self, glyph_id: GlyphId) -> usize
Trait Implementations§
Source§impl<'a> Clone for BaseOutlines<'a>
impl<'a> Clone for BaseOutlines<'a>
Source§fn clone(&self) -> BaseOutlines<'a>
fn clone(&self) -> BaseOutlines<'a>
Returns a duplicate 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 moreAuto Trait Implementations§
impl<'a> Freeze for BaseOutlines<'a>
impl<'a> RefUnwindSafe for BaseOutlines<'a>
impl<'a> Send for BaseOutlines<'a>
impl<'a> Sync for BaseOutlines<'a>
impl<'a> Unpin for BaseOutlines<'a>
impl<'a> UnsafeUnpin for BaseOutlines<'a>
impl<'a> UnwindSafe for BaseOutlines<'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