2018-11-28 18:25:20 -08: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 13:31:55 -07:00
|
|
|
import (
|
2019-05-13 23:55:40 -07:00
|
|
|
"google.golang.org/protobuf/internal/errors"
|
|
|
|
"google.golang.org/protobuf/reflect/protoreflect"
|
2019-04-01 13:31:55 -07:00
|
|
|
)
|
2018-11-28 18:25:20 -08:00
|
|
|
|
|
|
|
// Message is the top-level interface that all messages must implement.
|
|
|
|
type Message = protoreflect.ProtoMessage
|
2019-04-01 13:31:55 -07:00
|
|
|
|
|
|
|
// errInternalNoFast indicates that fast-path operations are not available for a message.
|
2019-04-03 12:17:24 -07:00
|
|
|
var errInternalNoFast = errors.New("BUG: internal error (errInternalNoFast)")
|