pub struct GlyphKeyedFlags { /* private fields */ }
Implementations§
Source§impl GlyphKeyedFlags
impl GlyphKeyedFlags
pub const NONE: Self = _
pub const WIDE_GLYPH_IDS: Self = _
Source§impl GlyphKeyedFlags
impl GlyphKeyedFlags
Sourcepub const fn from_bits(bits: u8) -> Option<Self>
pub const fn from_bits(bits: u8) -> Option<Self>
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) -> Self
pub const fn from_bits_truncate(bits: u8) -> Self
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
Sourcepub const fn intersects(&self, other: Self) -> bool
pub const fn intersects(&self, other: Self) -> bool
Returns true
if there are flags common to both self
and other
.
Sourcepub const fn contains(&self, other: Self) -> bool
pub const fn contains(&self, other: Self) -> bool
Returns true
if all of the flags in other
are contained within self
.
Sourcepub const fn intersection(self, other: Self) -> Self
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
.
Sourcepub const fn union(self, other: Self) -> Self
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
.
Sourcepub const fn difference(self, other: Self) -> Self
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 GlyphKeyedFlags
impl Binary for GlyphKeyedFlags
Source§impl BitAnd for GlyphKeyedFlags
impl BitAnd for GlyphKeyedFlags
Source§impl BitAndAssign for GlyphKeyedFlags
impl BitAndAssign for GlyphKeyedFlags
Source§fn bitand_assign(&mut self, other: Self)
fn bitand_assign(&mut self, other: Self)
Disables all flags disabled in the set.
Source§impl BitOr for GlyphKeyedFlags
impl BitOr for GlyphKeyedFlags
Source§fn bitor(self, other: GlyphKeyedFlags) -> Self
fn bitor(self, other: GlyphKeyedFlags) -> Self
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: Self)
fn bitor_assign(&mut self, other: Self)
Adds the set of flags.
Source§impl BitXor for GlyphKeyedFlags
impl BitXor for GlyphKeyedFlags
Source§impl BitXorAssign for GlyphKeyedFlags
impl BitXorAssign for GlyphKeyedFlags
Source§fn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
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<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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§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§impl Serialize for GlyphKeyedFlags
impl Serialize for GlyphKeyedFlags
Source§impl Sub for GlyphKeyedFlags
impl Sub for GlyphKeyedFlags
Source§impl SubAssign for GlyphKeyedFlags
impl SubAssign for GlyphKeyedFlags
Source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
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
.