pub enum GlyphVariationResult {
Found(GlyphId),
UseDefault,
}
Expand description
A result of a variation glyph mapping.
Variants§
Found(GlyphId)
Glyph was found in the variation encoding table.
UseDefault
Glyph should be looked in other, non-variation tables.
Basically, you should use Encoding::glyph_index
or Face::glyph_index
in this case.
Trait Implementations§
source§impl Clone for GlyphVariationResult
impl Clone for GlyphVariationResult
source§fn clone(&self) -> GlyphVariationResult
fn clone(&self) -> GlyphVariationResult
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 GlyphVariationResult
impl Debug for GlyphVariationResult
source§impl PartialEq for GlyphVariationResult
impl PartialEq for GlyphVariationResult
source§fn eq(&self, other: &GlyphVariationResult) -> bool
fn eq(&self, other: &GlyphVariationResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for GlyphVariationResult
impl Eq for GlyphVariationResult
impl StructuralPartialEq for GlyphVariationResult
Auto Trait Implementations§
impl Freeze for GlyphVariationResult
impl RefUnwindSafe for GlyphVariationResult
impl Send for GlyphVariationResult
impl Sync for GlyphVariationResult
impl Unpin for GlyphVariationResult
impl UnwindSafe for GlyphVariationResult
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