Package-level declarations
Types
Link copied to clipboard
class EncodingSchema(val serializersModule: SerializersModule, val types: Map<String, Type>) : BinaryFormat
A BinaryFormat for encoding and decoding protobuf messages. Applications should obtain instances of this class using the encodingSchema function.
Link copied to clipboard
class Field(val name: Identifier, val encoding: FieldEncoding, val number: FieldNumber, val rule: FieldRule = FieldRule.Singular, val encoder: (WireBuffer) -> Encoder, val decoder: (List<WireValue>) -> Decoder) : Member
Link copied to clipboard
Link copied to clipboard
class Message(val name: Identifier, val members: List<Member> = emptyList(), val nestedTypes: List<Type> = emptyList(), val encoder: (output: WireBuffer, fieldNumber: FieldNumber?, encodeZeroValue: Boolean) -> HybridEncoder, val decoder: (value: List<WireValue>) -> HybridDecoder) : Type
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@SerialInfo
Link copied to clipboard
@SerialInfo
Link copied to clipboard
Functions
Link copied to clipboard
Converts an EncodingSchema to a SchemaDocument, which may be serialized using SchemaDocumentWriter, validated using validate, and compared with other SchemaDocuments.