pub struct FeatureTag(/* private fields */);
Expand description
A 4-byte OpenType
feature tag identifier
Implementations§
Source§impl FeatureTag
impl FeatureTag
Sourcepub const STANDARD_LIGATURES: Self
pub const STANDARD_LIGATURES: Self
Standard ligatures (fi, fl, etc.)
Sourcepub const CONTEXTUAL_LIGATURES: Self
pub const CONTEXTUAL_LIGATURES: Self
Contextual ligatures (context-dependent ligatures)
Sourcepub const CONTEXTUAL_ALTERNATES: Self
pub const CONTEXTUAL_ALTERNATES: Self
Contextual alternates (glyph substitutions based on context)
Sourcepub const DISCRETIONARY_LIGATURES: Self
pub const DISCRETIONARY_LIGATURES: Self
Discretionary ligatures (optional stylistic ligatures)
Sourcepub const SMALL_CAPS: Self
pub const SMALL_CAPS: Self
Small caps (lowercase to small capitals)
Sourcepub const ALL_SMALL_CAPS: Self
pub const ALL_SMALL_CAPS: Self
All small caps (uppercase and lowercase to small capitals)
Sourcepub const STYLISTIC_SET_1: Self
pub const STYLISTIC_SET_1: Self
Stylistic Set 1 (font-specific alternate glyphs)
Sourcepub const STYLISTIC_SET_2: Self
pub const STYLISTIC_SET_2: Self
Stylistic Set 2 (font-specific alternate glyphs)
pub const fn new(tag: &[u8; 4]) -> Self
pub fn as_bytes(&self) -> &[u8; 4]
Trait Implementations§
Source§impl Clone for FeatureTag
impl Clone for FeatureTag
Source§fn clone(&self) -> FeatureTag
fn clone(&self) -> FeatureTag
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 FeatureTag
impl Debug for FeatureTag
Source§impl Hash for FeatureTag
impl Hash for FeatureTag
Source§impl PartialEq for FeatureTag
impl PartialEq for FeatureTag
impl Copy for FeatureTag
impl Eq for FeatureTag
impl StructuralPartialEq for FeatureTag
Auto Trait Implementations§
impl Freeze for FeatureTag
impl RefUnwindSafe for FeatureTag
impl Send for FeatureTag
impl Sync for FeatureTag
impl Unpin for FeatureTag
impl UnwindSafe for FeatureTag
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