invalidUTF8
A string field was not encoded as valid UTF-8.
case invalidUTF8
A string field was not encoded as valid UTF-8.
case invalidUTF8
s13SwiftProtobuf19BinaryDecodingErrorO11invalidUTF8yA2CmF
What are these?6SGQ0
import SwiftProtobuf
Support library for Swift code generated by protoc-gen-swift.
enum BinaryDecodingError
Describes errors that can occur when decoding a message from binary format.
case trailingGarbage
Extraneous data remained after decoding should have been complete.
case truncated
The decoder unexpectedly reached the end of the data before it was expected.
case malformedProtobuf
The binary data was malformed in some way, such as an invalid wire format or field tag.
case missingRequiredFields
The definition of the message or one of its nested messages has required fields but the binary data did not include values for them. You must pass partial: true
during decoding if you wish to explicitly ignore missing required fields.
case internalExtensionError
An internal error happened while decoding. If this is ever encountered, please file an issue with SwiftProtobuf with as much details as possible for what happened (proto definitions, bytes being decoded (if possible)).
case messageDepthLimit
Reached the nesting limit for messages within messages while decoding.