Enum neko::graphic::TexelError []

pub enum TexelError {
    PartFail(PartError),
    ForbiddenGlyph(char),
}

The enum TexelError defines the possible errors from constructor Texel.

Variants

Trait Implementations

impl Debug for TexelError

Formats the value using the given formatter.

impl Clone for TexelError

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for TexelError

The function fmt formats the value using the given formatter.

impl Error for TexelError

The function description returns a short description of the error.

The function cause returns the lower-level cause of this error if any.