enum GlyphNameIterKind<'a> {
None,
V1(Post<'a>, u32),
V2 {
post: Post<'a>,
idx: u32,
checkpoint_stride: usize,
checkpoints: [u32; 16],
last_actual_idx: Option<usize>,
last_offset: usize,
},
}Variants§
Trait Implementations§
Source§impl<'a> Clone for GlyphNameIterKind<'a>
impl<'a> Clone for GlyphNameIterKind<'a>
Source§fn clone(&self) -> GlyphNameIterKind<'a>
fn clone(&self) -> GlyphNameIterKind<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for GlyphNameIterKind<'a>
impl<'a> RefUnwindSafe for GlyphNameIterKind<'a>
impl<'a> Send for GlyphNameIterKind<'a>
impl<'a> Sync for GlyphNameIterKind<'a>
impl<'a> Unpin for GlyphNameIterKind<'a>
impl<'a> UnsafeUnpin for GlyphNameIterKind<'a>
impl<'a> UnwindSafe for GlyphNameIterKind<'a>
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