Struct Flags

Source
#[repr(transparent)]
pub struct Flags { bits: u16, }
Expand description

The flags field for the head table.

Fields§

§bits: u16

Implementations§

Source§

impl Flags

Source

pub const BASELINE_AT_Y_0: Self

Bit 0: Baseline for font at y=0.

Source

pub const LSB_AT_X_0: Self

Bit 1: Left sidebearing point at x=0 (relevant only for TrueType rasterizers).

Source

pub const INSTRUCTIONS_MAY_DEPEND_ON_POINT_SIZE: Self

Bit 2: Instructions may depend on point size.

Source

pub const FORCE_INTEGER_PPEM: Self

Bit 3: Force ppem to integer values for all internal scaler math; may use fractional ppem sizes if this bit is clear. It is strongly recommended that this be set in hinted fonts.

Source

pub const INSTRUCTIONS_MAY_ALTER_ADVANCE_WIDTH: Self

Bit 4: Instructions may alter advance width (the advance widths might not scale linearly).

Source

pub const LOSSLESS_TRANSFORMED_FONT_DATA: Self

Bit 11: Font data is “lossless” as a result of having been subjected to optimizing transformation and/or compression (such as compression mechanisms defined by ISO/IEC 14496-18, MicroType® Express, WOFF 2.0, or similar) where the original font functionality and features are retained but the binary compatibility between input and output font files is not guaranteed. As a result of the applied transform, the DSIG table may also be invalidated.

Source

pub const CONVERTED_FONT: Self

Bit 12: Font converted (produce compatible metrics).

Source

pub const OPTIMIZED_FOR_CLEARTYPE: Self

Bit 13: Font optimized for ClearType. Note, fonts that rely on embedded bitmaps (EBDT) for rendering should not be considered optimized for ClearType, and therefore should keep this bit cleared.

Source

pub const LAST_RESORT_FONT: Self

Bit 14: Last Resort font. If set, indicates that the glyphs encoded in the ‘cmap’ subtables are simply generic symbolic representations of code point ranges and do not truly represent support for those code points. If unset, indicates that the glyphs encoded in the ‘cmap’ subtables represent proper support for those code points.

Source§

impl Flags

Source

pub const fn empty() -> Self

Returns an empty set of flags.

Source

pub const fn all() -> Self

Returns the set containing all flags.

Source

pub const fn bits(&self) -> u16

Returns the raw value of the flags currently stored.

Source

pub const fn from_bits(bits: u16) -> Option<Self>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

Source

pub const fn from_bits_truncate(bits: u16) -> Self

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

Source

pub const fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

Source

pub const fn intersects(&self, other: Self) -> bool

Returns true if there are flags common to both self and other.

Source

pub const fn contains(&self, other: Self) -> bool

Returns true if all of the flags in other are contained within self.

Source

pub fn insert(&mut self, other: Self)

Inserts the specified flags in-place.

Source

pub fn remove(&mut self, other: Self)

Removes the specified flags in-place.

Source

pub fn toggle(&mut self, other: Self)

Toggles the specified flags in-place.

Source

pub const fn intersection(self, other: Self) -> Self

Returns the intersection between the flags in self and other.

Specifically, the returned set contains only the flags which are present in both self and other.

This is equivalent to using the & operator (e.g. ops::BitAnd), as in flags & other.

Source

pub const fn union(self, other: Self) -> Self

Returns the union of between the flags in self and other.

Specifically, the returned set contains all flags which are present in either self or other, including any which are present in both.

This is equivalent to using the | operator (e.g. ops::BitOr), as in flags | other.

Source

pub const fn difference(self, other: Self) -> Self

Returns the difference between the flags in self and other.

Specifically, the returned set contains all flags present in self, except for the ones present in other.

It is also conceptually equivalent to the “bit-clear” operation: flags & !other (and this syntax is also supported).

This is equivalent to using the - operator (e.g. ops::Sub), as in flags - other.

Trait Implementations§

Source§

impl Binary for Flags

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl BitAnd for Flags

Source§

fn bitand(self, other: Self) -> Self

Returns the intersection between the two sets of flags.

Source§

type Output = Flags

The resulting type after applying the & operator.
Source§

impl BitAndAssign for Flags

Source§

fn bitand_assign(&mut self, other: Self)

Disables all flags disabled in the set.

Source§

impl BitOr for Flags

Source§

fn bitor(self, other: Flags) -> Self

Returns the union of the two sets of flags.

Source§

type Output = Flags

The resulting type after applying the | operator.
Source§

impl BitOrAssign for Flags

Source§

fn bitor_assign(&mut self, other: Self)

Adds the set of flags.

Source§

impl BitXor for Flags

Source§

fn bitxor(self, other: Self) -> Self

Returns the left flags, but with all the right flags toggled.

Source§

type Output = Flags

The resulting type after applying the ^ operator.
Source§

impl BitXorAssign for Flags

Source§

fn bitxor_assign(&mut self, other: Self)

Toggles the set of flags.

Source§

impl Clone for Flags

Source§

fn clone(&self) -> Flags

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Flags

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Flags

Source§

fn default() -> Flags

Returns the “default value” for a type. Read more
Source§

impl<'a> From<Flags> for FieldType<'a>

Source§

fn from(src: Flags) -> FieldType<'a>

Converts to this type from the input type.
Source§

impl Hash for Flags

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl LowerHex for Flags

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Not for Flags

Source§

fn not(self) -> Self

Returns the complement of this set of flags.

Source§

type Output = Flags

The resulting type after applying the ! operator.
Source§

impl Octal for Flags

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Ord for Flags

Source§

fn cmp(&self, other: &Flags) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Flags

Source§

fn eq(&self, other: &Flags) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Flags

Source§

fn partial_cmp(&self, other: &Flags) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Scalar for Flags

Source§

type Raw = <u16 as Scalar>::Raw

The raw byte representation of this type.
Source§

fn to_raw(self) -> Self::Raw

Encode this type as raw big-endian bytes
Source§

fn from_raw(raw: Self::Raw) -> Self

Create an instance of this type from raw big-endian bytes
Source§

fn read(slice: &[u8]) -> Option<Self>

Attempt to read a scalar from a slice. Read more
Source§

impl Sub for Flags

Source§

fn sub(self, other: Self) -> Self

Returns the set difference of the two sets of flags.

Source§

type Output = Flags

The resulting type after applying the - operator.
Source§

impl SubAssign for Flags

Source§

fn sub_assign(&mut self, other: Self)

Disables all flags enabled in the set.

Source§

impl UpperHex for Flags

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Zeroable for Flags

Source§

fn zeroed() -> Self

Source§

impl AnyBitPattern for Flags

Source§

impl Copy for Flags

Source§

impl Eq for Flags

Source§

impl StructuralPartialEq for Flags

Auto Trait Implementations§

§

impl Freeze for Flags

§

impl RefUnwindSafe for Flags

§

impl Send for Flags

§

impl Sync for Flags

§

impl Unpin for Flags

§

impl UnwindSafe for Flags

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CheckedBitPattern for T
where T: AnyBitPattern,

Source§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
Source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> FixedSize for T
where T: Scalar,

Source§

const RAW_BYTE_LEN: usize

The raw size of this type, in bytes. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.