Struct read_fonts::tables::layout::RangeRecord
source · #[repr(C, packed(1))]pub struct RangeRecord {
pub start_glyph_id: BigEndian<GlyphId16>,
pub end_glyph_id: BigEndian<GlyphId16>,
pub start_coverage_index: BigEndian<u16>,
}
Expand description
Used in CoverageFormat2
Fields§
§start_glyph_id: BigEndian<GlyphId16>
First glyph ID in the range
end_glyph_id: BigEndian<GlyphId16>
Last glyph ID in the range
start_coverage_index: BigEndian<u16>
Coverage Index of first glyph ID in range
Implementations§
source§impl RangeRecord
impl RangeRecord
sourcepub fn start_glyph_id(&self) -> GlyphId16
pub fn start_glyph_id(&self) -> GlyphId16
First glyph ID in the range
sourcepub fn end_glyph_id(&self) -> GlyphId16
pub fn end_glyph_id(&self) -> GlyphId16
Last glyph ID in the range
sourcepub fn start_coverage_index(&self) -> u16
pub fn start_coverage_index(&self) -> u16
Coverage Index of first glyph ID in range
Trait Implementations§
source§impl Clone for RangeRecord
impl Clone for RangeRecord
source§fn clone(&self) -> RangeRecord
fn clone(&self) -> RangeRecord
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RangeRecord
impl Debug for RangeRecord
source§impl FixedSize for RangeRecord
impl FixedSize for RangeRecord
source§const RAW_BYTE_LEN: usize = 6usize
const RAW_BYTE_LEN: usize = 6usize
The raw size of this type, in bytes. Read more
source§impl Hash for RangeRecord
impl Hash for RangeRecord
source§impl Ord for RangeRecord
impl Ord for RangeRecord
source§fn cmp(&self, other: &RangeRecord) -> Ordering
fn cmp(&self, other: &RangeRecord) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for RangeRecord
impl PartialEq for RangeRecord
source§impl PartialOrd for RangeRecord
impl PartialOrd for RangeRecord
source§impl<'a> SomeRecord<'a> for RangeRecord
impl<'a> SomeRecord<'a> for RangeRecord
fn traverse(self, data: FontData<'a>) -> RecordResolver<'a>
impl AnyBitPattern for RangeRecord
impl Copy for RangeRecord
impl Eq for RangeRecord
impl StructuralPartialEq for RangeRecord
Auto Trait Implementations§
impl Freeze for RangeRecord
impl RefUnwindSafe for RangeRecord
impl Send for RangeRecord
impl Sync for RangeRecord
impl Unpin for RangeRecord
impl UnwindSafe for RangeRecord
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
Mutably borrows from an owned value. Read more
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
If this function returns true, then it must be valid to reinterpret
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)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)