protoencoding

package
v0.52.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 19, 2021 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Marshaler

type Marshaler interface {
	Marshal(message proto.Message) ([]byte, error)
}

Marshaler marshals Messages.

func NewJSONMarshaler

func NewJSONMarshaler(resolver Resolver) Marshaler

NewJSONMarshaler returns a new Marshaler for JSON.

This has the potential to be unstable over time. resolver can be nil if unknown and are only needed for extensions.

func NewJSONMarshalerIndent

func NewJSONMarshalerIndent(resolver Resolver) Marshaler

NewJSONMarshalerIndent returns a new Marshaler for JSON with indents.

This has the potential to be unstable over time. resolver can be nil if unknown and are only needed for extensions.

func NewJSONMarshalerUseProtoNames

func NewJSONMarshalerUseProtoNames(resolver Resolver) Marshaler

NewJSONMarshalerUseProtoNames returns a new Marshaler for JSON using the proto names for keys.

This has the potential to be unstable over time. resolver can be nil if unknown and are only needed for extensions.

func NewWireMarshaler

func NewWireMarshaler() Marshaler

NewWireMarshaler returns a new Marshaler for wire.

See https://godoc.org/google.golang.org/protobuf/proto#MarshalOptions for a discussion on stability. This has the potential to be unstable over time.

type Resolver

Resolver is a Resolver.

This is only needed in cases where extensions may be present.

func NewResolver

func NewResolver(fileDescriptors ...protodescriptor.FileDescriptor) (Resolver, error)

NewResolver creates a New Resolver.

If the input slice is empty, this returns nil The given FileDescriptors must be self-contained, that is they must contain all imports. This can NOT be guaranteed for FileDescriptorSets given over the wire, and can only be guaranteed from builds.

type Unmarshaler

type Unmarshaler interface {
	Unmarshal(data []byte, message proto.Message) error
}

Unmarshaler unmarshals Messages.

func NewJSONUnmarshaler

func NewJSONUnmarshaler(resolver Resolver) Unmarshaler

NewJSONUnmarshaler returns a new Unmarshaler for json.

resolver can be nil if unknown and are only needed for extensions.

func NewWireUnmarshaler

func NewWireUnmarshaler(resolver Resolver) Unmarshaler

NewWireUnmarshaler returns a new Unmarshaler for wire.

resolver can be nil if unknown and are only needed for extensions.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL