#[repr(i32)]pub enum XmpError {
Show 37 variants
Unknown = 0,
TBD = -1,
Unavailable = -2,
BadObject = -3,
BadParam = -4,
BadValue = -5,
AssertFailure = -6,
EnforceFailure = -7,
Unimplemented = -8,
InternalFailure = -9,
Deprecated = -10,
ExternalFailure = -11,
UserAbort = -12,
StdException = -13,
UnknownException = -14,
NoMemory = -15,
BadSchema = -101,
BadXPath = -102,
BadOptions = -103,
BadIndex = -104,
BadIterPosition = -105,
BadParse = -106,
BadSerialize = -107,
BadFileFormat = -108,
NoFileHandler = -109,
TooLargeForJPEG = -110,
BadXML = -201,
BadRDF = -202,
BadXMP = -203,
EmptyIterator = -204,
BadUnicode = -205,
BadTIFF = -206,
BadJPEG = -207,
BadPSD = -208,
BadPSIR = -209,
BadIPTC = -210,
BadMPEG = -211,
}
Expand description
XMP errors.
Variants§
Unknown = 0
Generic unknown error.
TBD = -1
Generic undefined error.
Generic unavailable error.
BadObject = -3
Generic bad object error.
BadParam = -4
Generic bad parameter error.
BadValue = -5
Generic bad value error.
AssertFailure = -6
Generic assertion failure.
EnforceFailure = -7
Generic enforcement failure.
Unimplemented = -8
Generic unimplemented error.
InternalFailure = -9
Generic internal failure.
Deprecated = -10
Generic deprecated error.
ExternalFailure = -11
Generic external failure.
UserAbort = -12
Generic user abort error.
StdException = -13
Generic standard exception.
UnknownException = -14
Generic unknown exception.
NoMemory = -15
Generic out-of-memory error.
BadSchema = -101
Bad schema parameter.
BadXPath = -102
Bad XPath parameter.
BadOptions = -103
Bad options parameter.
BadIndex = -104
Bad index parameter.
BadIterPosition = -105
Bad iteration position.
BadParse = -106
XML parsing error.
BadSerialize = -107
Serialization error.
BadFileFormat = -108
File format error.
NoFileHandler = -109
No file handler found for format.
TooLargeForJPEG = -110
Data too large for JPEG file format.
BadXML = -201
XML format error.
BadRDF = -202
RDF format error.
BadXMP = -203
XMP format error.
EmptyIterator = -204
Empty iterator.
BadUnicode = -205
Unicode error.
BadTIFF = -206
TIFF format error.
BadJPEG = -207
JPEG format error.
BadPSD = -208
PSD format error.
BadPSIR = -209
PSIR format error.
BadIPTC = -210
IPTC format error.
BadMPEG = -211
MPEG format error.