pub struct GlyphCluster {
pub glyph_start: u32,
pub glyph_end: u32,
pub char_start: u32,
pub char_end: u32,
}Expand description
One glyph interval mapped to an exclusive logical Unicode-scalar interval.
Fields§
§glyph_start: u32§glyph_end: u32§char_start: u32§char_end: u32Implementations§
Trait Implementations§
Source§impl Clone for GlyphCluster
impl Clone for GlyphCluster
Source§fn clone(&self) -> GlyphCluster
fn clone(&self) -> GlyphCluster
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GlyphCluster
Source§impl Debug for GlyphCluster
impl Debug for GlyphCluster
impl Eq for GlyphCluster
Source§impl PartialEq for GlyphCluster
impl PartialEq for GlyphCluster
impl StructuralPartialEq for GlyphCluster
Auto Trait Implementations§
impl Freeze for GlyphCluster
impl RefUnwindSafe for GlyphCluster
impl Send for GlyphCluster
impl Sync for GlyphCluster
impl Unpin for GlyphCluster
impl UnsafeUnpin for GlyphCluster
impl UnwindSafe for GlyphCluster
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