pub struct GlyphKeyedFlags { /* private fields */ }
ift
only.Implementations§
Source§impl GlyphKeyedFlags
impl GlyphKeyedFlags
pub const NONE: GlyphKeyedFlags
pub const WIDE_GLYPH_IDS: GlyphKeyedFlags
Source§impl GlyphKeyedFlags
impl GlyphKeyedFlags
Sourcepub const fn empty() -> GlyphKeyedFlags
pub const fn empty() -> GlyphKeyedFlags
Returns an empty set of flags.
Sourcepub const fn all() -> GlyphKeyedFlags
pub const fn all() -> GlyphKeyedFlags
Returns the set containing all flags.
Sourcepub const fn from_bits(bits: u8) -> Option<GlyphKeyedFlags>
pub const fn from_bits(bits: u8) -> Option<GlyphKeyedFlags>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
Sourcepub const fn from_bits_truncate(bits: u8) -> GlyphKeyedFlags
pub const fn from_bits_truncate(bits: u8) -> GlyphKeyedFlags
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
Sourcepub const fn intersects(&self, other: GlyphKeyedFlags) -> bool
pub const fn intersects(&self, other: GlyphKeyedFlags) -> bool
Returns true
if there are flags common to both self
and other
.
Sourcepub const fn contains(&self, other: GlyphKeyedFlags) -> bool
pub const fn contains(&self, other: GlyphKeyedFlags) -> bool
Returns true
if all of the flags in other
are contained within self
.
Sourcepub fn insert(&mut self, other: GlyphKeyedFlags)
pub fn insert(&mut self, other: GlyphKeyedFlags)
Inserts the specified flags in-place.
Sourcepub fn remove(&mut self, other: GlyphKeyedFlags)
pub fn remove(&mut self, other: GlyphKeyedFlags)
Removes the specified flags in-place.
Sourcepub fn toggle(&mut self, other: GlyphKeyedFlags)
pub fn toggle(&mut self, other: GlyphKeyedFlags)
Toggles the specified flags in-place.
Sourcepub const fn intersection(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
pub const fn intersection(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
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
.
Sourcepub const fn union(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
pub const fn union(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
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
.
Sourcepub const fn difference(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
pub const fn difference(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
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 GlyphKeyedFlags
impl Binary for GlyphKeyedFlags
Source§impl BitAnd for GlyphKeyedFlags
impl BitAnd for GlyphKeyedFlags
Source§fn bitand(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
fn bitand(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
Returns the intersection between the two sets of flags.
Source§type Output = GlyphKeyedFlags
type Output = GlyphKeyedFlags
&
operator.Source§impl BitAndAssign for GlyphKeyedFlags
impl BitAndAssign for GlyphKeyedFlags
Source§fn bitand_assign(&mut self, other: GlyphKeyedFlags)
fn bitand_assign(&mut self, other: GlyphKeyedFlags)
Disables all flags disabled in the set.
Source§impl BitOr for GlyphKeyedFlags
impl BitOr for GlyphKeyedFlags
Source§fn bitor(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
fn bitor(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
Returns the union of the two sets of flags.
Source§type Output = GlyphKeyedFlags
type Output = GlyphKeyedFlags
|
operator.Source§impl BitOrAssign for GlyphKeyedFlags
impl BitOrAssign for GlyphKeyedFlags
Source§fn bitor_assign(&mut self, other: GlyphKeyedFlags)
fn bitor_assign(&mut self, other: GlyphKeyedFlags)
Adds the set of flags.
Source§impl BitXor for GlyphKeyedFlags
impl BitXor for GlyphKeyedFlags
Source§fn bitxor(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
fn bitxor(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
Returns the left flags, but with all the right flags toggled.
Source§type Output = GlyphKeyedFlags
type Output = GlyphKeyedFlags
^
operator.Source§impl BitXorAssign for GlyphKeyedFlags
impl BitXorAssign for GlyphKeyedFlags
Source§fn bitxor_assign(&mut self, other: GlyphKeyedFlags)
fn bitxor_assign(&mut self, other: GlyphKeyedFlags)
Toggles the set of flags.
Source§impl Clone for GlyphKeyedFlags
impl Clone for GlyphKeyedFlags
Source§fn clone(&self) -> GlyphKeyedFlags
fn clone(&self) -> GlyphKeyedFlags
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for GlyphKeyedFlags
impl Debug for GlyphKeyedFlags
Source§impl Default for GlyphKeyedFlags
impl Default for GlyphKeyedFlags
Source§fn default() -> GlyphKeyedFlags
fn default() -> GlyphKeyedFlags
Source§impl<'de> Deserialize<'de> for GlyphKeyedFlags
impl<'de> Deserialize<'de> for GlyphKeyedFlags
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GlyphKeyedFlags, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GlyphKeyedFlags, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl FontWrite for GlyphKeyedFlags
impl FontWrite for GlyphKeyedFlags
Source§fn write_into(&self, writer: &mut TableWriter)
fn write_into(&self, writer: &mut TableWriter)
Source§fn table_type(&self) -> TableType
fn table_type(&self) -> TableType
Source§impl Hash for GlyphKeyedFlags
impl Hash for GlyphKeyedFlags
Source§impl LowerHex for GlyphKeyedFlags
impl LowerHex for GlyphKeyedFlags
Source§impl Not for GlyphKeyedFlags
impl Not for GlyphKeyedFlags
Source§fn not(self) -> GlyphKeyedFlags
fn not(self) -> GlyphKeyedFlags
Returns the complement of this set of flags.
Source§type Output = GlyphKeyedFlags
type Output = GlyphKeyedFlags
!
operator.Source§impl Octal for GlyphKeyedFlags
impl Octal for GlyphKeyedFlags
Source§impl Ord for GlyphKeyedFlags
impl Ord for GlyphKeyedFlags
Source§fn cmp(&self, other: &GlyphKeyedFlags) -> Ordering
fn cmp(&self, other: &GlyphKeyedFlags) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for GlyphKeyedFlags
impl PartialEq for GlyphKeyedFlags
Source§impl PartialOrd for GlyphKeyedFlags
impl PartialOrd for GlyphKeyedFlags
Source§impl Scalar for GlyphKeyedFlags
impl Scalar for GlyphKeyedFlags
Source§fn from_raw(raw: <GlyphKeyedFlags as Scalar>::Raw) -> GlyphKeyedFlags
fn from_raw(raw: <GlyphKeyedFlags as Scalar>::Raw) -> GlyphKeyedFlags
Source§impl Serialize for GlyphKeyedFlags
impl Serialize for GlyphKeyedFlags
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Source§impl Sub for GlyphKeyedFlags
impl Sub for GlyphKeyedFlags
Source§fn sub(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
fn sub(self, other: GlyphKeyedFlags) -> GlyphKeyedFlags
Returns the set difference of the two sets of flags.
Source§type Output = GlyphKeyedFlags
type Output = GlyphKeyedFlags
-
operator.Source§impl SubAssign for GlyphKeyedFlags
impl SubAssign for GlyphKeyedFlags
Source§fn sub_assign(&mut self, other: GlyphKeyedFlags)
fn sub_assign(&mut self, other: GlyphKeyedFlags)
Disables all flags enabled in the set.
Source§impl UpperHex for GlyphKeyedFlags
impl UpperHex for GlyphKeyedFlags
impl AnyBitPattern for GlyphKeyedFlags
impl Copy for GlyphKeyedFlags
impl Eq for GlyphKeyedFlags
impl StructuralPartialEq for GlyphKeyedFlags
Auto Trait Implementations§
impl Freeze for GlyphKeyedFlags
impl RefUnwindSafe for GlyphKeyedFlags
impl Send for GlyphKeyedFlags
impl Sync for GlyphKeyedFlags
impl Unpin for GlyphKeyedFlags
impl UnwindSafe for GlyphKeyedFlags
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
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
fn is_valid_bit_pattern(_bits: &T) -> bool
bits
as &Self
.Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> FixedSize for Twhere
T: Scalar,
impl<T> FixedSize for Twhere
T: Scalar,
Source§const RAW_BYTE_LEN: usize
const RAW_BYTE_LEN: usize
Source§impl<T> FromObjRef<BigEndian<T>> for T
impl<T> FromObjRef<BigEndian<T>> for T
Source§fn from_obj_ref(from: &BigEndian<T>, _: FontData<'_>) -> T
fn from_obj_ref(from: &BigEndian<T>, _: FontData<'_>) -> T
from
to an instance of Self
, using the provided data to resolve offsets.Source§impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
Source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
T
, using the provided data to resolve any offsets.