Struct owned_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: u16
The type of feature.
setting: u16
The feature’s setting (aka selector).
enable_flags: u32
Flags for the settings that this feature and setting enables.
disable_flags: u32
Complement of flags for the settings that this feature and setting disable.
Trait Implementations§
impl Copy for Feature
Auto Trait Implementations§
impl Freeze for Feature
impl RefUnwindSafe for Feature
impl Send for Feature
impl Sync for Feature
impl Unpin for Feature
impl UnwindSafe for Feature
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