 e621acd7f2
			
		
	
	
		e621acd7f2
		
	
	
	
	
		
			
			# Objective Fixes #6756 ## Solution Removes the variant wherever it's used Co-authored-by: Jay Pavlina <jay@enjin.io>
		
			
				
	
	
		
			11 lines
		
	
	
		
			251 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			251 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use ab_glyph::GlyphId;
 | |
| use thiserror::Error;
 | |
| 
 | |
| #[derive(Debug, PartialEq, Eq, Error)]
 | |
| pub enum TextError {
 | |
|     #[error("font not found")]
 | |
|     NoSuchFont,
 | |
|     #[error("failed to add glyph to newly-created atlas {0:?}")]
 | |
|     FailedToAddGlyph(GlyphId),
 | |
| }
 |