Struct read_fonts::tables::gpos::ValueFormat
source · pub struct ValueFormat { /* private fields */ }
Expand description
See ValueRecord
Implementations§
source§impl ValueFormat
impl ValueFormat
sourcepub const ANY_DEVICE_OR_VARIDX: Self = _
pub const ANY_DEVICE_OR_VARIDX: Self = _
A mask with all the device/variation index bits set
sourcepub fn record_byte_len(self) -> usize
pub fn record_byte_len(self) -> usize
Return the number of bytes required to store a ValueRecord
in this format.
source§impl ValueFormat
impl ValueFormat
sourcepub const X_PLACEMENT: Self = _
pub const X_PLACEMENT: Self = _
Includes horizontal adjustment for placement
sourcepub const Y_PLACEMENT: Self = _
pub const Y_PLACEMENT: Self = _
Includes vertical adjustment for placement
sourcepub const X_PLACEMENT_DEVICE: Self = _
pub const X_PLACEMENT_DEVICE: Self = _
Includes Device table (non-variable font) / VariationIndex table (variable font) for horizontal placement
sourcepub const Y_PLACEMENT_DEVICE: Self = _
pub const Y_PLACEMENT_DEVICE: Self = _
Includes Device table (non-variable font) / VariationIndex table (variable font) for vertical placement
sourcepub const X_ADVANCE_DEVICE: Self = _
pub const X_ADVANCE_DEVICE: Self = _
Includes Device table (non-variable font) / VariationIndex table (variable font) for horizontal advance
sourcepub const Y_ADVANCE_DEVICE: Self = _
pub const Y_ADVANCE_DEVICE: Self = _
Includes Device table (non-variable font) / VariationIndex table (variable font) for vertical advance
source§impl ValueFormat
impl ValueFormat
sourcepub const fn from_bits(bits: u16) -> Option<Self>
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.
sourcepub const fn from_bits_truncate(bits: u16) -> Self
pub const fn from_bits_truncate(bits: u16) -> 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 ValueFormat
impl Binary for ValueFormat
source§impl BitAnd for ValueFormat
impl BitAnd for ValueFormat
source§impl BitAndAssign for ValueFormat
impl BitAndAssign for ValueFormat
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 ValueFormat
impl BitOr for ValueFormat
source§fn bitor(self, other: ValueFormat) -> Self
fn bitor(self, other: ValueFormat) -> Self
Returns the union of the two sets of flags.
source§type Output = ValueFormat
type Output = ValueFormat
|
operator.source§impl BitOrAssign for ValueFormat
impl BitOrAssign for ValueFormat
source§fn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
Adds the set of flags.
source§impl BitXor for ValueFormat
impl BitXor for ValueFormat
source§impl BitXorAssign for ValueFormat
impl BitXorAssign for ValueFormat
source§fn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
Toggles the set of flags.
source§impl Clone for ValueFormat
impl Clone for ValueFormat
source§fn clone(&self) -> ValueFormat
fn clone(&self) -> ValueFormat
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ValueFormat
impl Debug for ValueFormat
source§impl Default for ValueFormat
impl Default for ValueFormat
source§fn default() -> ValueFormat
fn default() -> ValueFormat
source§impl<'a> From<ValueFormat> for FieldType<'a>
impl<'a> From<ValueFormat> for FieldType<'a>
source§fn from(src: ValueFormat) -> FieldType<'a>
fn from(src: ValueFormat) -> FieldType<'a>
source§impl Hash for ValueFormat
impl Hash for ValueFormat
source§impl LowerHex for ValueFormat
impl LowerHex for ValueFormat
source§impl Not for ValueFormat
impl Not for ValueFormat
source§impl Octal for ValueFormat
impl Octal for ValueFormat
source§impl Ord for ValueFormat
impl Ord for ValueFormat
source§fn cmp(&self, other: &ValueFormat) -> Ordering
fn cmp(&self, other: &ValueFormat) -> 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 ValueFormat
impl PartialEq for ValueFormat
source§impl PartialOrd for ValueFormat
impl PartialOrd for ValueFormat
source§impl Scalar for ValueFormat
impl Scalar for ValueFormat
source§impl Sub for ValueFormat
impl Sub for ValueFormat
source§impl SubAssign for ValueFormat
impl SubAssign for ValueFormat
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 ValueFormat
impl UpperHex for ValueFormat
impl AnyBitPattern for ValueFormat
impl Copy for ValueFormat
impl Eq for ValueFormat
impl StructuralPartialEq for ValueFormat
Auto Trait Implementations§
impl Freeze for ValueFormat
impl RefUnwindSafe for ValueFormat
impl Send for ValueFormat
impl Sync for ValueFormat
impl Unpin for ValueFormat
impl UnwindSafe for ValueFormat
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)