Enum ConversionError
Kinds of conversion errors.
Namespace: Unity.Collections
Syntax
public enum ConversionError
Fields
Name | Description | Value |
---|---|---|
None | No conversion error. |
0 |
Overflow | The target storage does not have sufficient capacity. For copy operations; the value was either truncated into the target storage, or failed to write entirely. |
1 |
Encoding | The bytes do not form a valid character. |
2 |
CodePoint | The rune is not a valid code point. |
3 |