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 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GlyphVariationResult) -> bool
fn ne(&self, other: &GlyphVariationResult) -> bool
This method tests for !=
.
impl Copy 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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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