Error

Enum Error 

Source
#[non_exhaustive]
pub enum Error {
Show 17 variants MalformedAttributes(String), DecompressingError(Error), Base64DecodingError(DecodeError), CsvDecodingError(CsvDecodingError), XmlDecodingError(Error), RangeError(String), PrematureEnd(String), PathIsNotFile, ResourceLoadingError { path: PathBuf, err: Box<dyn Error + Send + Sync + 'static>, }, InvalidTileFound, InvalidEncodingFormat { encoding: Option<String>, compression: Option<String>, }, InvalidPropertyValue { description: String, }, UnknownPropertyType { type_name: String, }, TemplateHasNoObject, InvalidWangIdEncoding { read_string: String, }, InvalidObjectData { description: String, }, InvalidTileset(InvalidTilesetError),
}
Expand description

Errors which occurred when parsing the file

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

MalformedAttributes(String)

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

§

DecompressingError(Error)

An error occurred when decompressing using the flate2 crate.

§

Base64DecodingError(DecodeError)

An error occurred when decoding a base64 encoded dataset.

§

CsvDecodingError(CsvDecodingError)

An error occurred when decoding a csv encoded dataset.

§

XmlDecodingError(Error)

An error occurred when parsing an XML file, such as a TMX or TSX file.

§

RangeError(String)

A parameter is out of range or results in arithmetic underflow or overflow.

§

PrematureEnd(String)

The XML stream ended before the document was fully parsed.

§

PathIsNotFile

The path given is invalid because it isn’t contained in any folder.

§

ResourceLoadingError

An error generated by ResourceReader while trying to read a resource.

Fields

§path: PathBuf

The path to the file that was unable to be opened.

§err: Box<dyn Error + Send + Sync + 'static>

The error that occurred when trying to open the file.

§

InvalidTileFound

There was an invalid tile in the map parsed.

§

InvalidEncodingFormat

Unknown encoding or compression format or invalid combination of both (for tile layers)

Fields

§encoding: Option<String>

The encoding attribute of the tile layer data, if any.

§compression: Option<String>

The compression attribute of the tile layer data, if any.

§

InvalidPropertyValue

There was an error parsing the value of a PropertyValue.

Fields

§description: String

A description of the error that occurred.

§

UnknownPropertyType

Found an unknown property value type while parsing a PropertyValue.

Fields

§type_name: String

The name of the type that isn’t recognized by the crate. Supported types are string, int, float, bool, color, file and object.

§

TemplateHasNoObject

A template was found that does not have an object element in it.

§

InvalidWangIdEncoding

Found a WangId that was not properly formatted.

Fields

§read_string: String

Stores the wrongly parsed String.

§

InvalidObjectData

There was an error parsing an Object’s data.

Fields

§description: String

A description of the error that occurred.

§

InvalidTileset(InvalidTilesetError)

There was an invalid tileset in the map parsed.

Trait Implementations§

Source§

impl Debug for Error

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Error

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Error for Error

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more

Auto Trait Implementations§

§

impl Freeze for Error

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.