pub struct SelectionFlags { /* private fields */ }
Expand description

Implementations§

source§

impl SelectionFlags

source

pub const ITALIC: SelectionFlags = _

Bit 0: Font contains italic or oblique glyphs, otherwise they are upright.

source

pub const UNDERSCORE: SelectionFlags = _

Bit 1: Glyphs are underscored.

source

pub const NEGATIVE: SelectionFlags = _

Bit 2: Glyphs have their foreground and background reversed.

source

pub const OUTLINED: SelectionFlags = _

Bit 3: Outline (hollow) glyphs, otherwise they are solid.

source

pub const STRIKEOUT: SelectionFlags = _

Bit 4: Glyphs are overstruck.

source

pub const BOLD: SelectionFlags = _

Bit 5: Glyphs are emboldened.

source

pub const REGULAR: SelectionFlags = _

Bit 6: Glyphs are in the standard weight/style for the font.

source

pub const USE_TYPO_METRICS: SelectionFlags = _

Bit 7: If set, it is strongly recommended that applications use OS/2.sTypoAscender - OS/2.sTypoDescender + OS/2.sTypoLineGap as the default line spacing for this font.

source

pub const WWS: SelectionFlags = _

Bit 8: The font has ‘name’ table strings consistent with a weight/width/slope family without requiring use of name IDs 21 and 22.

source

pub const OBLIQUE: SelectionFlags = _

Bit 9: Font contains oblique glyphs.

source§

impl SelectionFlags

source

pub const fn empty() -> SelectionFlags

Returns an empty set of flags.

source

pub const fn all() -> SelectionFlags

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<SelectionFlags>

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) -> SelectionFlags

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: SelectionFlags) -> bool

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

source

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

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

source

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

Inserts the specified flags in-place.

source

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

Removes the specified flags in-place.

source

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

Toggles the specified flags in-place.

source

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

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: SelectionFlags) -> SelectionFlags

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: SelectionFlags) -> SelectionFlags

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 SelectionFlags

source§

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

Formats the value using the given formatter.
source§

impl BitAnd for SelectionFlags

source§

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

Returns the intersection between the two sets of flags.

§

type Output = SelectionFlags

The resulting type after applying the & operator.
source§

impl BitAndAssign for SelectionFlags

source§

fn bitand_assign(&mut self, other: SelectionFlags)

Disables all flags disabled in the set.

source§

impl BitOr for SelectionFlags

source§

fn bitor(self, other: SelectionFlags) -> SelectionFlags

Returns the union of the two sets of flags.

§

type Output = SelectionFlags

The resulting type after applying the | operator.
source§

impl BitOrAssign for SelectionFlags

source§

fn bitor_assign(&mut self, other: SelectionFlags)

Adds the set of flags.

source§

impl BitXor for SelectionFlags

source§

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

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

§

type Output = SelectionFlags

The resulting type after applying the ^ operator.
source§

impl BitXorAssign for SelectionFlags

source§

fn bitxor_assign(&mut self, other: SelectionFlags)

Toggles the set of flags.

source§

impl Clone for SelectionFlags

source§

fn clone(&self) -> SelectionFlags

Returns a copy 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 SelectionFlags

source§

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

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

impl Default for SelectionFlags

source§

fn default() -> SelectionFlags

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

impl FontWrite for SelectionFlags

source§

fn write_into(&self, writer: &mut TableWriter)

Write our data and information about offsets into this TableWriter.
source§

fn table_type(&self) -> TableType

The type of this table. Read more
source§

impl Hash for SelectionFlags

source§

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

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 SelectionFlags

source§

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

Formats the value using the given formatter.
source§

impl Not for SelectionFlags

source§

fn not(self) -> SelectionFlags

Returns the complement of this set of flags.

§

type Output = SelectionFlags

The resulting type after applying the ! operator.
source§

impl Octal for SelectionFlags

source§

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

Formats the value using the given formatter.
source§

impl Ord for SelectionFlags

source§

fn cmp(&self, other: &SelectionFlags) -> 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 + PartialOrd,

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

impl PartialEq for SelectionFlags

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for SelectionFlags

source§

fn partial_cmp(&self, other: &SelectionFlags) -> 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

This method 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

This method 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

This method 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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Scalar for SelectionFlags

§

type Raw = <u16 as Scalar>::Raw

The raw byte representation of this type.
source§

fn to_raw(self) -> <SelectionFlags as Scalar>::Raw

Encode this type as raw big-endian bytes
source§

fn from_raw(raw: <SelectionFlags as Scalar>::Raw) -> SelectionFlags

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 SelectionFlags

source§

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

Returns the set difference of the two sets of flags.

§

type Output = SelectionFlags

The resulting type after applying the - operator.
source§

impl SubAssign for SelectionFlags

source§

fn sub_assign(&mut self, other: SelectionFlags)

Disables all flags enabled in the set.

source§

impl UpperHex for SelectionFlags

source§

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

Formats the value using the given formatter.
source§

impl Copy for SelectionFlags

source§

impl Eq for SelectionFlags

source§

impl StructuralPartialEq for SelectionFlags

Auto Trait Implementations§

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
§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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> FromObjRef<BigEndian<T>> for T
where T: Scalar, BigEndian<T>: Copy,

source§

fn from_obj_ref(from: &BigEndian<T>, _: FontData<'_>) -> T

Convert from to an instance of Self, using the provided data to resolve offsets.
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,

§

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<U, T> ToOwnedObj<U> for T
where U: FromObjRef<T>,

source§

fn to_owned_obj(&self, data: FontData<'_>) -> U

Convert this type into T, using the provided data to resolve any offsets.
source§

impl<U, T> ToOwnedTable<U> for T
where U: FromTableRef<T>,

source§

fn to_owned_table(&self) -> U

source§

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

§

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>,

§

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.