pub struct FontFeatures {
pub features: Vec<Feature>,
}
Fields§
§features: Vec<Feature>
Implementations§
Source§impl FontFeatures
impl FontFeatures
pub fn new() -> Self
pub fn set(&mut self, tag: FeatureTag, value: u32) -> &mut Self
Sourcepub fn enable(&mut self, tag: FeatureTag) -> &mut Self
pub fn enable(&mut self, tag: FeatureTag) -> &mut Self
Enable a feature (set to 1)
Sourcepub fn disable(&mut self, tag: FeatureTag) -> &mut Self
pub fn disable(&mut self, tag: FeatureTag) -> &mut Self
Disable a feature (set to 0)
Trait Implementations§
Source§impl Clone for FontFeatures
impl Clone for FontFeatures
Source§fn clone(&self) -> FontFeatures
fn clone(&self) -> FontFeatures
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 FontFeatures
impl Debug for FontFeatures
Source§impl Default for FontFeatures
impl Default for FontFeatures
Source§fn default() -> FontFeatures
fn default() -> FontFeatures
Returns the “default value” for a type. Read more
Source§impl Hash for FontFeatures
impl Hash for FontFeatures
Source§impl PartialEq for FontFeatures
impl PartialEq for FontFeatures
impl Eq for FontFeatures
impl StructuralPartialEq for FontFeatures
Auto Trait Implementations§
impl Freeze for FontFeatures
impl RefUnwindSafe for FontFeatures
impl Send for FontFeatures
impl Sync for FontFeatures
impl Unpin for FontFeatures
impl UnwindSafe for FontFeatures
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