pub struct EntryFormatFlags { /* private fields */ }
ift
only.Implementations§
Source§impl EntryFormatFlags
impl EntryFormatFlags
pub const FEATURES_AND_DESIGN_SPACE: EntryFormatFlags
pub const CHILD_INDICES: EntryFormatFlags
pub const ENTRY_ID_DELTA: EntryFormatFlags
pub const PATCH_FORMAT: EntryFormatFlags
pub const CODEPOINTS_BIT_1: EntryFormatFlags
pub const CODEPOINTS_BIT_2: EntryFormatFlags
pub const IGNORED: EntryFormatFlags
pub const RESERVED: EntryFormatFlags
Source§impl EntryFormatFlags
impl EntryFormatFlags
Sourcepub const fn empty() -> EntryFormatFlags
pub const fn empty() -> EntryFormatFlags
Returns an empty set of flags.
Sourcepub const fn all() -> EntryFormatFlags
pub const fn all() -> EntryFormatFlags
Returns the set containing all flags.
Sourcepub const fn from_bits(bits: u8) -> Option<EntryFormatFlags>
pub const fn from_bits(bits: u8) -> Option<EntryFormatFlags>
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) -> EntryFormatFlags
pub const fn from_bits_truncate(bits: u8) -> EntryFormatFlags
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
Sourcepub const fn intersects(&self, other: EntryFormatFlags) -> bool
pub const fn intersects(&self, other: EntryFormatFlags) -> bool
Returns true
if there are flags common to both self
and other
.
Sourcepub const fn contains(&self, other: EntryFormatFlags) -> bool
pub const fn contains(&self, other: EntryFormatFlags) -> bool
Returns true
if all of the flags in other
are contained within self
.
Sourcepub fn insert(&mut self, other: EntryFormatFlags)
pub fn insert(&mut self, other: EntryFormatFlags)
Inserts the specified flags in-place.
Sourcepub fn remove(&mut self, other: EntryFormatFlags)
pub fn remove(&mut self, other: EntryFormatFlags)
Removes the specified flags in-place.
Sourcepub fn toggle(&mut self, other: EntryFormatFlags)
pub fn toggle(&mut self, other: EntryFormatFlags)
Toggles the specified flags in-place.
Sourcepub const fn intersection(self, other: EntryFormatFlags) -> EntryFormatFlags
pub const fn intersection(self, other: EntryFormatFlags) -> EntryFormatFlags
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: EntryFormatFlags) -> EntryFormatFlags
pub const fn union(self, other: EntryFormatFlags) -> EntryFormatFlags
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: EntryFormatFlags) -> EntryFormatFlags
pub const fn difference(self, other: EntryFormatFlags) -> EntryFormatFlags
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 EntryFormatFlags
impl Binary for EntryFormatFlags
Source§impl BitAnd for EntryFormatFlags
impl BitAnd for EntryFormatFlags
Source§fn bitand(self, other: EntryFormatFlags) -> EntryFormatFlags
fn bitand(self, other: EntryFormatFlags) -> EntryFormatFlags
Returns the intersection between the two sets of flags.
Source§type Output = EntryFormatFlags
type Output = EntryFormatFlags
&
operator.Source§impl BitAndAssign for EntryFormatFlags
impl BitAndAssign for EntryFormatFlags
Source§fn bitand_assign(&mut self, other: EntryFormatFlags)
fn bitand_assign(&mut self, other: EntryFormatFlags)
Disables all flags disabled in the set.
Source§impl BitOr for EntryFormatFlags
impl BitOr for EntryFormatFlags
Source§fn bitor(self, other: EntryFormatFlags) -> EntryFormatFlags
fn bitor(self, other: EntryFormatFlags) -> EntryFormatFlags
Returns the union of the two sets of flags.
Source§type Output = EntryFormatFlags
type Output = EntryFormatFlags
|
operator.Source§impl BitOrAssign for EntryFormatFlags
impl BitOrAssign for EntryFormatFlags
Source§fn bitor_assign(&mut self, other: EntryFormatFlags)
fn bitor_assign(&mut self, other: EntryFormatFlags)
Adds the set of flags.
Source§impl BitXor for EntryFormatFlags
impl BitXor for EntryFormatFlags
Source§fn bitxor(self, other: EntryFormatFlags) -> EntryFormatFlags
fn bitxor(self, other: EntryFormatFlags) -> EntryFormatFlags
Returns the left flags, but with all the right flags toggled.
Source§type Output = EntryFormatFlags
type Output = EntryFormatFlags
^
operator.Source§impl BitXorAssign for EntryFormatFlags
impl BitXorAssign for EntryFormatFlags
Source§fn bitxor_assign(&mut self, other: EntryFormatFlags)
fn bitxor_assign(&mut self, other: EntryFormatFlags)
Toggles the set of flags.
Source§impl Clone for EntryFormatFlags
impl Clone for EntryFormatFlags
Source§fn clone(&self) -> EntryFormatFlags
fn clone(&self) -> EntryFormatFlags
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for EntryFormatFlags
impl Debug for EntryFormatFlags
Source§impl Default for EntryFormatFlags
impl Default for EntryFormatFlags
Source§fn default() -> EntryFormatFlags
fn default() -> EntryFormatFlags
Source§impl<'de> Deserialize<'de> for EntryFormatFlags
impl<'de> Deserialize<'de> for EntryFormatFlags
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EntryFormatFlags, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EntryFormatFlags, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl FontWrite for EntryFormatFlags
impl FontWrite for EntryFormatFlags
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 EntryFormatFlags
impl Hash for EntryFormatFlags
Source§impl LowerHex for EntryFormatFlags
impl LowerHex for EntryFormatFlags
Source§impl Not for EntryFormatFlags
impl Not for EntryFormatFlags
Source§fn not(self) -> EntryFormatFlags
fn not(self) -> EntryFormatFlags
Returns the complement of this set of flags.
Source§type Output = EntryFormatFlags
type Output = EntryFormatFlags
!
operator.Source§impl Octal for EntryFormatFlags
impl Octal for EntryFormatFlags
Source§impl Ord for EntryFormatFlags
impl Ord for EntryFormatFlags
Source§fn cmp(&self, other: &EntryFormatFlags) -> Ordering
fn cmp(&self, other: &EntryFormatFlags) -> 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 EntryFormatFlags
impl PartialEq for EntryFormatFlags
Source§impl PartialOrd for EntryFormatFlags
impl PartialOrd for EntryFormatFlags
Source§impl Scalar for EntryFormatFlags
impl Scalar for EntryFormatFlags
Source§fn from_raw(raw: <EntryFormatFlags as Scalar>::Raw) -> EntryFormatFlags
fn from_raw(raw: <EntryFormatFlags as Scalar>::Raw) -> EntryFormatFlags
Source§impl Serialize for EntryFormatFlags
impl Serialize for EntryFormatFlags
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 EntryFormatFlags
impl Sub for EntryFormatFlags
Source§fn sub(self, other: EntryFormatFlags) -> EntryFormatFlags
fn sub(self, other: EntryFormatFlags) -> EntryFormatFlags
Returns the set difference of the two sets of flags.
Source§type Output = EntryFormatFlags
type Output = EntryFormatFlags
-
operator.Source§impl SubAssign for EntryFormatFlags
impl SubAssign for EntryFormatFlags
Source§fn sub_assign(&mut self, other: EntryFormatFlags)
fn sub_assign(&mut self, other: EntryFormatFlags)
Disables all flags enabled in the set.
Source§impl UpperHex for EntryFormatFlags
impl UpperHex for EntryFormatFlags
impl AnyBitPattern for EntryFormatFlags
impl Copy for EntryFormatFlags
impl Eq for EntryFormatFlags
impl StructuralPartialEq for EntryFormatFlags
Auto Trait Implementations§
impl Freeze for EntryFormatFlags
impl RefUnwindSafe for EntryFormatFlags
impl Send for EntryFormatFlags
impl Sync for EntryFormatFlags
impl Unpin for EntryFormatFlags
impl UnwindSafe for EntryFormatFlags
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.