Enum editeur::sprite::texel::err::TexelError
[−]
[src]
pub enum TexelError { PartFail(PartError), ForbiddenGlyph(char), }
The enum TexelError
defines the possible errors
from constructor Texel.
Variants
PartFail(PartError)
ForbiddenGlyph(char)
Trait Implementations
impl Clone for TexelError
[src]
fn clone(&self) -> TexelError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Debug for TexelError
[src]
impl Display for TexelError
[src]
fn fmt(&self, _: &mut Formatter) -> Result
The function fmt
formats the value using
the given formatter.
impl Error for TexelError
[src]
fn description(&self) -> &str
The function description
returns a short description of
the error.
fn cause(&self) -> Option<&Error>
The function cause
returns the lower-level cause of
this error if any.