Enum tiled::TiledError [] [src]

pub enum TiledError {
    MalformedAttributes(String),
    DecompressingError(Error),
    Base64DecodingError(Base64Error),
    XmlDecodingError(XmlError),
    PrematureEnd(String),
    Other(String),
}

Errors which occured when parsing the file

Variants

A attribute was missing, had the wrong type of wasn't formated correctly.

An error occured when decompressing using the flate2 crate.

Trait Implementations

impl Debug for TiledError
[src]

Formats the value using the given formatter.

impl Display for TiledError
[src]

Formats the value using the given formatter. Read more

impl Error for TiledError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more