2018-11-29 02:25:20 +00:00
|
|
|
// Copyright 2018 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package proto
|
|
|
|
|
2019-04-01 20:31:55 +00:00
|
|
|
import (
|
2019-05-14 06:55:40 +00:00
|
|
|
"google.golang.org/protobuf/internal/errors"
|
|
|
|
"google.golang.org/protobuf/reflect/protoreflect"
|
2019-04-01 20:31:55 +00:00
|
|
|
)
|
2018-11-29 02:25:20 +00:00
|
|
|
|
|
|
|
// Message is the top-level interface that all messages must implement.
|
|
|
|
type Message = protoreflect.ProtoMessage
|
2019-04-01 20:31:55 +00:00
|
|
|
|
|
|
|
// errInternalNoFast indicates that fast-path operations are not available for a message.
|
2019-04-03 19:17:24 +00:00
|
|
|
var errInternalNoFast = errors.New("BUG: internal error (errInternalNoFast)")
|