// Code generated by protoc-gen-gogo. // source: wire.proto // DO NOT EDIT! /* Package wire is a generated protocol buffer package. It is generated from these files: wire.proto It has these top-level messages: TracerState */ package wire import proto "github.com/gogo/protobuf/proto" import fmt "fmt" import math "math" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf type TracerState struct { TraceId uint64 `protobuf:"fixed64,1,opt,name=trace_id,proto3" json:"trace_id,omitempty"` SpanId uint64 `protobuf:"fixed64,2,opt,name=span_id,proto3" json:"span_id,omitempty"` Sampled bool `protobuf:"varint,3,opt,name=sampled,proto3" json:"sampled,omitempty"` BaggageItems map[string]string `protobuf:"bytes,4,rep,name=baggage_items" json:"baggage_items,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *TracerState) Reset() { *m = TracerState{} } func (m *TracerState) String() string { return proto.CompactTextString(m) } func (*TracerState) ProtoMessage() {} func (m *TracerState) GetBaggageItems() map[string]string { if m != nil { return m.BaggageItems } return nil } func init() { proto.RegisterType((*TracerState)(nil), "basictracer_go.wire.TracerState") }