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
sourceimpl Clone for GlyphVariationResult
impl Clone for GlyphVariationResult
sourcefn clone(&self) -> GlyphVariationResult
fn clone(&self) -> GlyphVariationResult
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for GlyphVariationResult
impl Debug for GlyphVariationResult
sourceimpl PartialEq<GlyphVariationResult> for GlyphVariationResult
impl PartialEq<GlyphVariationResult> for GlyphVariationResult
sourcefn eq(&self, other: &GlyphVariationResult) -> bool
fn eq(&self, other: &GlyphVariationResult) -> bool
impl Copy for GlyphVariationResult
impl Eq for GlyphVariationResult
impl StructuralEq for GlyphVariationResult
impl StructuralPartialEq for GlyphVariationResult
Auto Trait Implementations
impl RefUnwindSafe for GlyphVariationResult
impl Send for GlyphVariationResult
impl Sync for GlyphVariationResult
impl Unpin for GlyphVariationResult
impl UnwindSafe for GlyphVariationResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more