Enum ttf_parser::cmap::GlyphVariationResult
source · 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<GlyphVariationResult> for GlyphVariationResult
impl PartialEq<GlyphVariationResult> 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 ==.