Enum gfx_text::Error
[−]
[src]
pub enum Error {
FontError(FontError),
PipelineError(PipelineStateError),
ProgramError(ProgramError),
CombinedError(CombinedError),
UpdateError(UpdateError<usize>),
}General error type returned by the library. Wraps all other errors.
Variants
FontError(FontError)Font loading error
PipelineError(PipelineStateError)Pipeline creation/update error
ProgramError(ProgramError)Program shader error.
CombinedError(CombinedError)An error occuring during creation of texture or resource view
UpdateError(UpdateError<usize>)An error occuring in buffer/texture updates
Trait Implementations
impl Debug for Error[src]
impl From<FontError> for Error[src]
impl From<PipelineStateError> for Error[src]
fn from(e: PipelineStateError) -> Error
Performs the conversion.
impl From<ProgramError> for Error[src]
fn from(e: ProgramError) -> Error
Performs the conversion.
impl From<CombinedError> for Error[src]
fn from(e: CombinedError) -> Error
Performs the conversion.
impl From<UpdateError<usize>> for Error[src]
fn from(e: UpdateError<usize>) -> Error
Performs the conversion.