Enum conrod::backend::piston::gfx::GlyphError
[−]
[src]
pub enum GlyphError {
Texture(CombinedError),
IoError(Error),
NoFont,
}An enum to represent various possible run-time errors that may occur.
Variants
Texture(CombinedError)An error happened when creating a gfx texture.
IoError(Error)An io error happened when reading font files.
NoFontNo font was found in the file.
Trait Implementations
impl From<CombinedError> for Error[src]
fn from(tex_err: CombinedError) -> Error[src]
Performs the conversion.