pub enum CachedBy {
Adding,
Reordering,
}
Expand description
Successful method of caching of the queue.
Variants§
Adding
Added any additional glyphs into the texture without affecting the position of any already cached glyphs in the latest queue.
Glyphs not in the latest queue may have been removed.
Reordering
Fit the glyph queue by re-ordering all glyph texture positions. Previous texture positions are no longer valid.
Trait Implementations§
source§impl Ord for CachedBy
impl Ord for CachedBy
source§impl PartialEq for CachedBy
impl PartialEq for CachedBy
source§impl PartialOrd for CachedBy
impl PartialOrd for CachedBy
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for CachedBy
impl Eq for CachedBy
impl StructuralEq for CachedBy
impl StructuralPartialEq for CachedBy
Auto Trait Implementations§
impl RefUnwindSafe for CachedBy
impl Send for CachedBy
impl Sync for CachedBy
impl Unpin for CachedBy
impl UnwindSafe for CachedBy
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