pub struct RangeRecord {
    pub start: GlyphId,
    pub end: GlyphId,
    pub value: u16,
}Expand description
A record that describes a range of glyph IDs.
Fields§
§start: GlyphIdFirst glyph ID in the range
end: GlyphIdLast glyph ID in the range
value: u16Coverage 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 duplicate 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 FromData for RangeRecord
 
impl FromData for RangeRecord
impl Copy 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