TupleDecodingError
public enum TupleDecodingError : Error
Undocumented
-
We tried to read a field beyond the end of the tuple.
Declaration
Swift
case missingField(index: Tuple.Index) -
We tried to read a field of a different type than the one actually stored.
Declaration
Swift
case incorrectTypeCode(index: Tuple.Index, desired: Set<UInt8>, actual: UInt8) -
We tried to read a negative integer into an unsigned type.
Declaration
Swift
case negativeValueForUnsignedType -
We tried to read an integer value that was too large for the destination type.
Declaration
Swift
case integerOverflow -
Undocumented
Declaration
Swift
case invalidString -
We tried to read a UUID that did not have the full UUID data.
Declaration
Swift
case missingUUIDData
View on GitHub
TupleDecodingError Enumeration Reference