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

MalformedAttributes(String)

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

DecompressingError(Error)

An error occured when decompressing using the flate2 crate.

Base64DecodingError(Base64Error)XmlDecodingError(XmlError)PrematureEnd(String)Other(String)

Trait Implementations

impl Debug for TiledError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for TiledError
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.