Enum tego::Error [−][src]
pub enum Error {
StructureError {
tag: String,
msg: String,
},
ParseError(Box<dyn Error>),
IO(Error),
UnsupportedFeature(String),
}Variants
An error in the structure of the data, e.g. a required tag is missing.
An error that happened while parsing the map, e.g. the tmx file is not valid xml.
IO(Error)A general IO error, e.g. opening a file failed
Tuple Fields of IO
0: ErrorUnsupportedFeature(String)Map uses features that are not (yet) supported
Tuple Fields of UnsupportedFeature
0: StringTrait Implementations
Performs the conversion.
Performs the conversion.