Struct ttf_parser::morx::Feature
source · [−]pub struct Feature {
pub kind: u16,
pub setting: u16,
pub enable_flags: u32,
pub disable_flags: u32,
}Expand description
The feature table is used to compute the sub-feature flags for a list of requested features and settings.
Fields
kind: u16The type of feature.
setting: u16The feature’s setting (aka selector).
enable_flags: u32Flags for the settings that this feature and setting enables.
disable_flags: u32Complement of flags for the settings that this feature and setting disable.
Trait Implementations
impl Copy for Feature
Auto Trait Implementations
impl RefUnwindSafe for Feature
impl Send for Feature
impl Sync for Feature
impl Unpin for Feature
impl UnwindSafe for Feature
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more