serving_go_proto

package
v0.0.50 Latest Latest
Warning

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

Go to latest
Published: Mar 31, 2021 License: Apache-2.0, NCSA Imports: 6 Imported by: 12

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	FileDirectory_Kind_name = map[int32]string{
		0: "UNKNOWN",
		1: "FILE",
		2: "DIRECTORY",
	}
	FileDirectory_Kind_value = map[string]int32{
		"UNKNOWN":   0,
		"FILE":      1,
		"DIRECTORY": 2,
	}
)

Enum value maps for FileDirectory_Kind.

View Source
var (
	FileDecorations_Override_Kind_name = map[int32]string{
		0: "OVERRIDES",
		1: "EXTENDS",
	}
	FileDecorations_Override_Kind_value = map[string]int32{
		"OVERRIDES": 0,
		"EXTENDS":   1,
	}
)

Enum value maps for FileDecorations_Override_Kind.

View Source
var (
	Relatives_Type_name = map[int32]string{
		0: "UNKNOWN",
		1: "PARENTS",
		2: "CHILDREN",
	}
	Relatives_Type_value = map[string]int32{
		"UNKNOWN":  0,
		"PARENTS":  1,
		"CHILDREN": 2,
	}
)

Enum value maps for Relatives_Type.

View Source
var (
	Callgraph_Type_name = map[int32]string{
		0: "UNKNOWN",
		1: "CALLER",
		2: "CALLEE",
	}
	Callgraph_Type_value = map[string]int32{
		"UNKNOWN": 0,
		"CALLER":  1,
		"CALLEE":  2,
	}
)

Enum value maps for Callgraph_Type.

View Source
var File_kythe_proto_serving_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Callgraph

type Callgraph struct {
	Tickets []string       `protobuf:"bytes,1,rep,name=tickets,proto3" json:"tickets,omitempty"`
	Type    Callgraph_Type `protobuf:"varint,2,opt,name=type,proto3,enum=kythe.proto.serving.Callgraph_Type" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*Callgraph) Descriptor deprecated

func (*Callgraph) Descriptor() ([]byte, []int)

Deprecated: Use Callgraph.ProtoReflect.Descriptor instead.

func (*Callgraph) GetTickets

func (x *Callgraph) GetTickets() []string

func (*Callgraph) GetType

func (x *Callgraph) GetType() Callgraph_Type

func (*Callgraph) ProtoMessage

func (*Callgraph) ProtoMessage()

func (*Callgraph) ProtoReflect added in v0.0.49

func (x *Callgraph) ProtoReflect() protoreflect.Message

func (*Callgraph) Reset

func (x *Callgraph) Reset()

func (*Callgraph) String

func (x *Callgraph) String() string

type Callgraph_Type

type Callgraph_Type int32
const (
	Callgraph_UNKNOWN Callgraph_Type = 0
	Callgraph_CALLER  Callgraph_Type = 1
	Callgraph_CALLEE  Callgraph_Type = 2
)

func (Callgraph_Type) Descriptor added in v0.0.49

func (Callgraph_Type) Enum added in v0.0.49

func (x Callgraph_Type) Enum() *Callgraph_Type

func (Callgraph_Type) EnumDescriptor deprecated

func (Callgraph_Type) EnumDescriptor() ([]byte, []int)

Deprecated: Use Callgraph_Type.Descriptor instead.

func (Callgraph_Type) Number added in v0.0.49

func (Callgraph_Type) String

func (x Callgraph_Type) String() string

func (Callgraph_Type) Type added in v0.0.49

type CorpusRoots

type CorpusRoots struct {
	Corpus []*CorpusRoots_Corpus `protobuf:"bytes,1,rep,name=corpus,proto3" json:"corpus,omitempty"`
	// contains filtered or unexported fields
}

func (*CorpusRoots) Descriptor deprecated

func (*CorpusRoots) Descriptor() ([]byte, []int)

Deprecated: Use CorpusRoots.ProtoReflect.Descriptor instead.

func (*CorpusRoots) GetCorpus

func (x *CorpusRoots) GetCorpus() []*CorpusRoots_Corpus

func (*CorpusRoots) ProtoMessage

func (*CorpusRoots) ProtoMessage()

func (*CorpusRoots) ProtoReflect added in v0.0.49

func (x *CorpusRoots) ProtoReflect() protoreflect.Message

func (*CorpusRoots) Reset

func (x *CorpusRoots) Reset()

func (*CorpusRoots) String

func (x *CorpusRoots) String() string

type CorpusRoots_Corpus

type CorpusRoots_Corpus struct {
	Corpus      string   `protobuf:"bytes,1,opt,name=corpus,proto3" json:"corpus,omitempty"`
	Root        []string `protobuf:"bytes,2,rep,name=root,proto3" json:"root,omitempty"`
	BuildConfig []string `protobuf:"bytes,3,rep,name=build_config,json=buildConfig,proto3" json:"build_config,omitempty"`
	// contains filtered or unexported fields
}

func (*CorpusRoots_Corpus) Descriptor deprecated

func (*CorpusRoots_Corpus) Descriptor() ([]byte, []int)

Deprecated: Use CorpusRoots_Corpus.ProtoReflect.Descriptor instead.

func (*CorpusRoots_Corpus) GetBuildConfig added in v0.0.31

func (x *CorpusRoots_Corpus) GetBuildConfig() []string

func (*CorpusRoots_Corpus) GetCorpus

func (x *CorpusRoots_Corpus) GetCorpus() string

func (*CorpusRoots_Corpus) GetRoot

func (x *CorpusRoots_Corpus) GetRoot() []string

func (*CorpusRoots_Corpus) ProtoMessage

func (*CorpusRoots_Corpus) ProtoMessage()

func (*CorpusRoots_Corpus) ProtoReflect added in v0.0.49

func (x *CorpusRoots_Corpus) ProtoReflect() protoreflect.Message

func (*CorpusRoots_Corpus) Reset

func (x *CorpusRoots_Corpus) Reset()

func (*CorpusRoots_Corpus) String

func (x *CorpusRoots_Corpus) String() string

type Document

type Document struct {
	Ticket       string                        `protobuf:"bytes,1,opt,name=ticket,proto3" json:"ticket,omitempty"`
	MarkedSource *common_go_proto.MarkedSource `protobuf:"bytes,2,opt,name=marked_source,json=markedSource,proto3" json:"marked_source,omitempty"`
	RawText      string                        `protobuf:"bytes,3,opt,name=raw_text,json=rawText,proto3" json:"raw_text,omitempty"`
	Link         []*common_go_proto.Link       `protobuf:"bytes,4,rep,name=link,proto3" json:"link,omitempty"`
	ChildTicket  []string                      `protobuf:"bytes,5,rep,name=child_ticket,json=childTicket,proto3" json:"child_ticket,omitempty"`
	Node         []*Node                       `protobuf:"bytes,6,rep,name=node,proto3" json:"node,omitempty"`
	DocumentedBy string                        `protobuf:"bytes,7,opt,name=documented_by,json=documentedBy,proto3" json:"documented_by,omitempty"`
	// contains filtered or unexported fields
}

func (*Document) Descriptor deprecated

func (*Document) Descriptor() ([]byte, []int)

Deprecated: Use Document.ProtoReflect.Descriptor instead.

func (*Document) GetChildTicket

func (x *Document) GetChildTicket() []string

func (*Document) GetDocumentedBy

func (x *Document) GetDocumentedBy() string
func (x *Document) GetLink() []*common_go_proto.Link

func (*Document) GetMarkedSource

func (x *Document) GetMarkedSource() *common_go_proto.MarkedSource

func (*Document) GetNode

func (x *Document) GetNode() []*Node

func (*Document) GetRawText

func (x *Document) GetRawText() string

func (*Document) GetTicket

func (x *Document) GetTicket() string

func (*Document) ProtoMessage

func (*Document) ProtoMessage()

func (*Document) ProtoReflect added in v0.0.49

func (x *Document) ProtoReflect() protoreflect.Message

func (*Document) Reset

func (x *Document) Reset()

func (*Document) String

func (x *Document) String() string

type Edge

type Edge struct {
	Source  *Node                   `protobuf:"bytes,1,opt,name=source,proto3" json:"source,omitempty"`
	Kind    string                  `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Ordinal int32                   `protobuf:"varint,5,opt,name=ordinal,proto3" json:"ordinal,omitempty"`
	Target  *Node                   `protobuf:"bytes,3,opt,name=target,proto3" json:"target,omitempty"`
	Fact    []*common_go_proto.Fact `protobuf:"bytes,4,rep,name=fact,proto3" json:"fact,omitempty"`
	// contains filtered or unexported fields
}

func (*Edge) Descriptor deprecated

func (*Edge) Descriptor() ([]byte, []int)

Deprecated: Use Edge.ProtoReflect.Descriptor instead.

func (*Edge) GetFact

func (x *Edge) GetFact() []*common_go_proto.Fact

func (*Edge) GetKind

func (x *Edge) GetKind() string

func (*Edge) GetOrdinal

func (x *Edge) GetOrdinal() int32

func (*Edge) GetSource

func (x *Edge) GetSource() *Node

func (*Edge) GetTarget

func (x *Edge) GetTarget() *Node

func (*Edge) ProtoMessage

func (*Edge) ProtoMessage()

func (*Edge) ProtoReflect added in v0.0.49

func (x *Edge) ProtoReflect() protoreflect.Message

func (*Edge) Reset

func (x *Edge) Reset()

func (*Edge) String

func (x *Edge) String() string

type EdgeGroup

type EdgeGroup struct {
	Kind string            `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"`
	Edge []*EdgeGroup_Edge `protobuf:"bytes,2,rep,name=edge,proto3" json:"edge,omitempty"`
	// contains filtered or unexported fields
}

func (*EdgeGroup) Descriptor deprecated

func (*EdgeGroup) Descriptor() ([]byte, []int)

Deprecated: Use EdgeGroup.ProtoReflect.Descriptor instead.

func (*EdgeGroup) GetEdge

func (x *EdgeGroup) GetEdge() []*EdgeGroup_Edge

func (*EdgeGroup) GetKind

func (x *EdgeGroup) GetKind() string

func (*EdgeGroup) ProtoMessage

func (*EdgeGroup) ProtoMessage()

func (*EdgeGroup) ProtoReflect added in v0.0.49

func (x *EdgeGroup) ProtoReflect() protoreflect.Message

func (*EdgeGroup) Reset

func (x *EdgeGroup) Reset()

func (*EdgeGroup) String

func (x *EdgeGroup) String() string

type EdgeGroup_Edge

type EdgeGroup_Edge struct {
	Target  *Node `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"`
	Ordinal int32 `protobuf:"varint,2,opt,name=ordinal,proto3" json:"ordinal,omitempty"`
	// contains filtered or unexported fields
}

func (*EdgeGroup_Edge) Descriptor deprecated

func (*EdgeGroup_Edge) Descriptor() ([]byte, []int)

Deprecated: Use EdgeGroup_Edge.ProtoReflect.Descriptor instead.

func (*EdgeGroup_Edge) GetOrdinal

func (x *EdgeGroup_Edge) GetOrdinal() int32

func (*EdgeGroup_Edge) GetTarget

func (x *EdgeGroup_Edge) GetTarget() *Node

func (*EdgeGroup_Edge) ProtoMessage

func (*EdgeGroup_Edge) ProtoMessage()

func (*EdgeGroup_Edge) ProtoReflect added in v0.0.49

func (x *EdgeGroup_Edge) ProtoReflect() protoreflect.Message

func (*EdgeGroup_Edge) Reset

func (x *EdgeGroup_Edge) Reset()

func (*EdgeGroup_Edge) String

func (x *EdgeGroup_Edge) String() string

type EdgePage

type EdgePage struct {
	PageKey      string     `protobuf:"bytes,1,opt,name=page_key,json=pageKey,proto3" json:"page_key,omitempty"`
	SourceTicket string     `protobuf:"bytes,2,opt,name=source_ticket,json=sourceTicket,proto3" json:"source_ticket,omitempty"`
	EdgesGroup   *EdgeGroup `protobuf:"bytes,3,opt,name=edges_group,json=edgesGroup,proto3" json:"edges_group,omitempty"`
	// contains filtered or unexported fields
}

func (*EdgePage) Descriptor deprecated

func (*EdgePage) Descriptor() ([]byte, []int)

Deprecated: Use EdgePage.ProtoReflect.Descriptor instead.

func (*EdgePage) GetEdgesGroup

func (x *EdgePage) GetEdgesGroup() *EdgeGroup

func (*EdgePage) GetPageKey

func (x *EdgePage) GetPageKey() string

func (*EdgePage) GetSourceTicket

func (x *EdgePage) GetSourceTicket() string

func (*EdgePage) ProtoMessage

func (*EdgePage) ProtoMessage()

func (*EdgePage) ProtoReflect added in v0.0.49

func (x *EdgePage) ProtoReflect() protoreflect.Message

func (*EdgePage) Reset

func (x *EdgePage) Reset()

func (*EdgePage) String

func (x *EdgePage) String() string

type ExpandedAnchor

type ExpandedAnchor struct {
	Ticket             string                `protobuf:"bytes,1,opt,name=ticket,proto3" json:"ticket,omitempty"`
	Kind               string                `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Text               string                `protobuf:"bytes,4,opt,name=text,proto3" json:"text,omitempty"`
	Span               *common_go_proto.Span `protobuf:"bytes,5,opt,name=span,proto3" json:"span,omitempty"`
	Snippet            string                `protobuf:"bytes,6,opt,name=snippet,proto3" json:"snippet,omitempty"`
	SnippetSpan        *common_go_proto.Span `protobuf:"bytes,7,opt,name=snippet_span,json=snippetSpan,proto3" json:"snippet_span,omitempty"`
	BuildConfiguration string                `protobuf:"bytes,8,opt,name=build_configuration,json=buildConfiguration,proto3" json:"build_configuration,omitempty"`
	Rank               float64               `protobuf:"fixed64,9,opt,name=rank,proto3" json:"rank,omitempty"`
	FileInfo           *FileInfo             `protobuf:"bytes,10,opt,name=file_info,json=fileInfo,proto3" json:"file_info,omitempty"`
	// contains filtered or unexported fields
}

func (*ExpandedAnchor) Descriptor deprecated

func (*ExpandedAnchor) Descriptor() ([]byte, []int)

Deprecated: Use ExpandedAnchor.ProtoReflect.Descriptor instead.

func (*ExpandedAnchor) GetBuildConfiguration added in v0.0.30

func (x *ExpandedAnchor) GetBuildConfiguration() string

func (*ExpandedAnchor) GetFileInfo added in v0.0.49

func (x *ExpandedAnchor) GetFileInfo() *FileInfo

func (*ExpandedAnchor) GetKind

func (x *ExpandedAnchor) GetKind() string

func (*ExpandedAnchor) GetRank added in v0.0.31

func (x *ExpandedAnchor) GetRank() float64

func (*ExpandedAnchor) GetSnippet

func (x *ExpandedAnchor) GetSnippet() string

func (*ExpandedAnchor) GetSnippetSpan

func (x *ExpandedAnchor) GetSnippetSpan() *common_go_proto.Span

func (*ExpandedAnchor) GetSpan

func (x *ExpandedAnchor) GetSpan() *common_go_proto.Span

func (*ExpandedAnchor) GetText

func (x *ExpandedAnchor) GetText() string

func (*ExpandedAnchor) GetTicket

func (x *ExpandedAnchor) GetTicket() string

func (*ExpandedAnchor) ProtoMessage

func (*ExpandedAnchor) ProtoMessage()

func (*ExpandedAnchor) ProtoReflect added in v0.0.49

func (x *ExpandedAnchor) ProtoReflect() protoreflect.Message

func (*ExpandedAnchor) Reset

func (x *ExpandedAnchor) Reset()

func (*ExpandedAnchor) String

func (x *ExpandedAnchor) String() string

type File

type File struct {
	Ticket   string    `protobuf:"bytes,1,opt,name=ticket,proto3" json:"ticket,omitempty"`
	Text     []byte    `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
	Encoding string    `protobuf:"bytes,3,opt,name=encoding,proto3" json:"encoding,omitempty"`
	Info     *FileInfo `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
	// contains filtered or unexported fields
}

func (*File) Descriptor deprecated

func (*File) Descriptor() ([]byte, []int)

Deprecated: Use File.ProtoReflect.Descriptor instead.

func (*File) GetEncoding

func (x *File) GetEncoding() string

func (*File) GetInfo added in v0.0.49

func (x *File) GetInfo() *FileInfo

func (*File) GetText

func (x *File) GetText() []byte

func (*File) GetTicket

func (x *File) GetTicket() string

func (*File) ProtoMessage

func (*File) ProtoMessage()

func (*File) ProtoReflect added in v0.0.49

func (x *File) ProtoReflect() protoreflect.Message

func (*File) Reset

func (x *File) Reset()

func (*File) String

func (x *File) String() string

type FileDecorations

type FileDecorations struct {
	File              *File                         `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
	Decoration        []*FileDecorations_Decoration `protobuf:"bytes,2,rep,name=decoration,proto3" json:"decoration,omitempty"`
	Target            []*Node                       `protobuf:"bytes,4,rep,name=target,proto3" json:"target,omitempty"`
	TargetDefinitions []*ExpandedAnchor             `protobuf:"bytes,3,rep,name=target_definitions,json=targetDefinitions,proto3" json:"target_definitions,omitempty"`
	TargetOverride    []*FileDecorations_Override   `protobuf:"bytes,5,rep,name=target_override,json=targetOverride,proto3" json:"target_override,omitempty"`
	Diagnostic        []*common_go_proto.Diagnostic `protobuf:"bytes,6,rep,name=diagnostic,proto3" json:"diagnostic,omitempty"`
	GeneratedBy       []string                      `protobuf:"bytes,7,rep,name=generated_by,json=generatedBy,proto3" json:"generated_by,omitempty"`
	FileInfo          []*FileInfo                   `protobuf:"bytes,8,rep,name=file_info,json=fileInfo,proto3" json:"file_info,omitempty"`
	// contains filtered or unexported fields
}

func (*FileDecorations) Descriptor deprecated

func (*FileDecorations) Descriptor() ([]byte, []int)

Deprecated: Use FileDecorations.ProtoReflect.Descriptor instead.

func (*FileDecorations) GetDecoration

func (x *FileDecorations) GetDecoration() []*FileDecorations_Decoration

func (*FileDecorations) GetDiagnostic

func (x *FileDecorations) GetDiagnostic() []*common_go_proto.Diagnostic

func (*FileDecorations) GetFile

func (x *FileDecorations) GetFile() *File

func (*FileDecorations) GetFileInfo added in v0.0.49

func (x *FileDecorations) GetFileInfo() []*FileInfo

func (*FileDecorations) GetGeneratedBy added in v0.0.34

func (x *FileDecorations) GetGeneratedBy() []string

func (*FileDecorations) GetTarget

func (x *FileDecorations) GetTarget() []*Node

func (*FileDecorations) GetTargetDefinitions

func (x *FileDecorations) GetTargetDefinitions() []*ExpandedAnchor

func (*FileDecorations) GetTargetOverride

func (x *FileDecorations) GetTargetOverride() []*FileDecorations_Override

func (*FileDecorations) ProtoMessage

func (*FileDecorations) ProtoMessage()

func (*FileDecorations) ProtoReflect added in v0.0.49

func (x *FileDecorations) ProtoReflect() protoreflect.Message

func (*FileDecorations) Reset

func (x *FileDecorations) Reset()

func (*FileDecorations) String

func (x *FileDecorations) String() string

type FileDecorations_Decoration

type FileDecorations_Decoration struct {
	Anchor           *RawAnchor `protobuf:"bytes,1,opt,name=anchor,proto3" json:"anchor,omitempty"`
	Kind             string     `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Target           string     `protobuf:"bytes,5,opt,name=target,proto3" json:"target,omitempty"`
	TargetDefinition string     `protobuf:"bytes,4,opt,name=target_definition,json=targetDefinition,proto3" json:"target_definition,omitempty"`
	SemanticScope    string     `protobuf:"bytes,6,opt,name=semantic_scope,json=semanticScope,proto3" json:"semantic_scope,omitempty"`
	// contains filtered or unexported fields
}

func (*FileDecorations_Decoration) Descriptor deprecated

func (*FileDecorations_Decoration) Descriptor() ([]byte, []int)

Deprecated: Use FileDecorations_Decoration.ProtoReflect.Descriptor instead.

func (*FileDecorations_Decoration) GetAnchor

func (x *FileDecorations_Decoration) GetAnchor() *RawAnchor

func (*FileDecorations_Decoration) GetKind

func (x *FileDecorations_Decoration) GetKind() string

func (*FileDecorations_Decoration) GetSemanticScope added in v0.0.31

func (x *FileDecorations_Decoration) GetSemanticScope() string

func (*FileDecorations_Decoration) GetTarget

func (x *FileDecorations_Decoration) GetTarget() string

func (*FileDecorations_Decoration) GetTargetDefinition

func (x *FileDecorations_Decoration) GetTargetDefinition() string

func (*FileDecorations_Decoration) ProtoMessage

func (*FileDecorations_Decoration) ProtoMessage()

func (*FileDecorations_Decoration) ProtoReflect added in v0.0.49

func (*FileDecorations_Decoration) Reset

func (x *FileDecorations_Decoration) Reset()

func (*FileDecorations_Decoration) String

func (x *FileDecorations_Decoration) String() string

type FileDecorations_Override

type FileDecorations_Override struct {
	Overriding           string                        `protobuf:"bytes,1,opt,name=overriding,proto3" json:"overriding,omitempty"`
	Overridden           string                        `protobuf:"bytes,2,opt,name=overridden,proto3" json:"overridden,omitempty"`
	OverriddenDefinition string                        `protobuf:"bytes,5,opt,name=overridden_definition,json=overriddenDefinition,proto3" json:"overridden_definition,omitempty"`
	Kind                 FileDecorations_Override_Kind `protobuf:"varint,3,opt,name=kind,proto3,enum=kythe.proto.serving.FileDecorations_Override_Kind" json:"kind,omitempty"`
	MarkedSource         *common_go_proto.MarkedSource `protobuf:"bytes,4,opt,name=marked_source,json=markedSource,proto3" json:"marked_source,omitempty"`
	// contains filtered or unexported fields
}

func (*FileDecorations_Override) Descriptor deprecated

func (*FileDecorations_Override) Descriptor() ([]byte, []int)

Deprecated: Use FileDecorations_Override.ProtoReflect.Descriptor instead.

func (*FileDecorations_Override) GetKind

func (*FileDecorations_Override) GetMarkedSource

func (*FileDecorations_Override) GetOverridden

func (x *FileDecorations_Override) GetOverridden() string

func (*FileDecorations_Override) GetOverriddenDefinition

func (x *FileDecorations_Override) GetOverriddenDefinition() string

func (*FileDecorations_Override) GetOverriding

func (x *FileDecorations_Override) GetOverriding() string

func (*FileDecorations_Override) ProtoMessage

func (*FileDecorations_Override) ProtoMessage()

func (*FileDecorations_Override) ProtoReflect added in v0.0.49

func (x *FileDecorations_Override) ProtoReflect() protoreflect.Message

func (*FileDecorations_Override) Reset

func (x *FileDecorations_Override) Reset()

func (*FileDecorations_Override) String

func (x *FileDecorations_Override) String() string

type FileDecorations_Override_Kind

type FileDecorations_Override_Kind int32
const (
	FileDecorations_Override_OVERRIDES FileDecorations_Override_Kind = 0
	FileDecorations_Override_EXTENDS   FileDecorations_Override_Kind = 1
)

func (FileDecorations_Override_Kind) Descriptor added in v0.0.49

func (FileDecorations_Override_Kind) Enum added in v0.0.49

func (FileDecorations_Override_Kind) EnumDescriptor deprecated

func (FileDecorations_Override_Kind) EnumDescriptor() ([]byte, []int)

Deprecated: Use FileDecorations_Override_Kind.Descriptor instead.

func (FileDecorations_Override_Kind) Number added in v0.0.49

func (FileDecorations_Override_Kind) String

func (FileDecorations_Override_Kind) Type added in v0.0.49

type FileDirectory

type FileDirectory struct {
	Entry []*FileDirectory_Entry `protobuf:"bytes,3,rep,name=entry,proto3" json:"entry,omitempty"`
	// Deprecated: Do not use.
	Subdirectory []string `protobuf:"bytes,1,rep,name=subdirectory,proto3" json:"subdirectory,omitempty"`
	// Deprecated: Do not use.
	FileTicket []string `protobuf:"bytes,2,rep,name=file_ticket,json=fileTicket,proto3" json:"file_ticket,omitempty"`
	// contains filtered or unexported fields
}

func (*FileDirectory) Descriptor deprecated

func (*FileDirectory) Descriptor() ([]byte, []int)

Deprecated: Use FileDirectory.ProtoReflect.Descriptor instead.

func (*FileDirectory) GetEntry added in v0.0.31

func (x *FileDirectory) GetEntry() []*FileDirectory_Entry

func (*FileDirectory) GetFileTicket deprecated

func (x *FileDirectory) GetFileTicket() []string

Deprecated: Do not use.

func (*FileDirectory) GetSubdirectory deprecated

func (x *FileDirectory) GetSubdirectory() []string

Deprecated: Do not use.

func (*FileDirectory) ProtoMessage

func (*FileDirectory) ProtoMessage()

func (*FileDirectory) ProtoReflect added in v0.0.49

func (x *FileDirectory) ProtoReflect() protoreflect.Message

func (*FileDirectory) Reset

func (x *FileDirectory) Reset()

func (*FileDirectory) String

func (x *FileDirectory) String() string

type FileDirectory_Entry added in v0.0.31

type FileDirectory_Entry struct {
	Kind        FileDirectory_Kind `protobuf:"varint,1,opt,name=kind,proto3,enum=kythe.proto.serving.FileDirectory_Kind" json:"kind,omitempty"`
	Name        string             `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	BuildConfig []string           `protobuf:"bytes,3,rep,name=build_config,json=buildConfig,proto3" json:"build_config,omitempty"`
	// contains filtered or unexported fields
}

func (*FileDirectory_Entry) Descriptor deprecated added in v0.0.31

func (*FileDirectory_Entry) Descriptor() ([]byte, []int)

Deprecated: Use FileDirectory_Entry.ProtoReflect.Descriptor instead.

func (*FileDirectory_Entry) GetBuildConfig added in v0.0.31

func (x *FileDirectory_Entry) GetBuildConfig() []string

func (*FileDirectory_Entry) GetKind added in v0.0.31

func (*FileDirectory_Entry) GetName added in v0.0.31

func (x *FileDirectory_Entry) GetName() string

func (*FileDirectory_Entry) ProtoMessage added in v0.0.31

func (*FileDirectory_Entry) ProtoMessage()

func (*FileDirectory_Entry) ProtoReflect added in v0.0.49

func (x *FileDirectory_Entry) ProtoReflect() protoreflect.Message

func (*FileDirectory_Entry) Reset added in v0.0.31

func (x *FileDirectory_Entry) Reset()

func (*FileDirectory_Entry) String added in v0.0.31

func (x *FileDirectory_Entry) String() string

type FileDirectory_Kind added in v0.0.31

type FileDirectory_Kind int32
const (
	FileDirectory_UNKNOWN   FileDirectory_Kind = 0
	FileDirectory_FILE      FileDirectory_Kind = 1
	FileDirectory_DIRECTORY FileDirectory_Kind = 2
)

func (FileDirectory_Kind) Descriptor added in v0.0.49

func (FileDirectory_Kind) Enum added in v0.0.49

func (FileDirectory_Kind) EnumDescriptor deprecated added in v0.0.31

func (FileDirectory_Kind) EnumDescriptor() ([]byte, []int)

Deprecated: Use FileDirectory_Kind.Descriptor instead.

func (FileDirectory_Kind) Number added in v0.0.49

func (FileDirectory_Kind) String added in v0.0.31

func (x FileDirectory_Kind) String() string

func (FileDirectory_Kind) Type added in v0.0.49

type FileInfo added in v0.0.49

type FileInfo struct {
	CorpusPath *common_go_proto.CorpusPath `protobuf:"bytes,1,opt,name=corpus_path,json=corpusPath,proto3" json:"corpus_path,omitempty"`
	Revision   string                      `protobuf:"bytes,2,opt,name=revision,proto3" json:"revision,omitempty"`
	// contains filtered or unexported fields
}

func (*FileInfo) Descriptor deprecated added in v0.0.49

func (*FileInfo) Descriptor() ([]byte, []int)

Deprecated: Use FileInfo.ProtoReflect.Descriptor instead.

func (*FileInfo) GetCorpusPath added in v0.0.49

func (x *FileInfo) GetCorpusPath() *common_go_proto.CorpusPath

func (*FileInfo) GetRevision added in v0.0.49

func (x *FileInfo) GetRevision() string

func (*FileInfo) ProtoMessage added in v0.0.49

func (*FileInfo) ProtoMessage()

func (*FileInfo) ProtoReflect added in v0.0.49

func (x *FileInfo) ProtoReflect() protoreflect.Message

func (*FileInfo) Reset added in v0.0.49

func (x *FileInfo) Reset()

func (*FileInfo) String added in v0.0.49

func (x *FileInfo) String() string

type IdentifierMatch

type IdentifierMatch struct {
	QualifiedName string                  `protobuf:"bytes,1,opt,name=qualified_name,json=qualifiedName,proto3" json:"qualified_name,omitempty"`
	BaseName      string                  `protobuf:"bytes,2,opt,name=base_name,json=baseName,proto3" json:"base_name,omitempty"`
	Node          []*IdentifierMatch_Node `protobuf:"bytes,3,rep,name=node,proto3" json:"node,omitempty"`
	// contains filtered or unexported fields
}

func (*IdentifierMatch) Descriptor deprecated

func (*IdentifierMatch) Descriptor() ([]byte, []int)

Deprecated: Use IdentifierMatch.ProtoReflect.Descriptor instead.

func (*IdentifierMatch) GetBaseName

func (x *IdentifierMatch) GetBaseName() string

func (*IdentifierMatch) GetNode

func (x *IdentifierMatch) GetNode() []*IdentifierMatch_Node

func (*IdentifierMatch) GetQualifiedName

func (x *IdentifierMatch) GetQualifiedName() string

func (*IdentifierMatch) ProtoMessage

func (*IdentifierMatch) ProtoMessage()

func (*IdentifierMatch) ProtoReflect added in v0.0.49

func (x *IdentifierMatch) ProtoReflect() protoreflect.Message

func (*IdentifierMatch) Reset

func (x *IdentifierMatch) Reset()

func (*IdentifierMatch) String

func (x *IdentifierMatch) String() string

type IdentifierMatch_Node

type IdentifierMatch_Node struct {
	Ticket      string `protobuf:"bytes,1,opt,name=ticket,proto3" json:"ticket,omitempty"`
	NodeKind    string `protobuf:"bytes,2,opt,name=node_kind,json=nodeKind,proto3" json:"node_kind,omitempty"`
	NodeSubkind string `protobuf:"bytes,3,opt,name=node_subkind,json=nodeSubkind,proto3" json:"node_subkind,omitempty"`
	// contains filtered or unexported fields
}

func (*IdentifierMatch_Node) Descriptor deprecated

func (*IdentifierMatch_Node) Descriptor() ([]byte, []int)

Deprecated: Use IdentifierMatch_Node.ProtoReflect.Descriptor instead.

func (*IdentifierMatch_Node) GetNodeKind

func (x *IdentifierMatch_Node) GetNodeKind() string

func (*IdentifierMatch_Node) GetNodeSubkind

func (x *IdentifierMatch_Node) GetNodeSubkind() string

func (*IdentifierMatch_Node) GetTicket

func (x *IdentifierMatch_Node) GetTicket() string

func (*IdentifierMatch_Node) ProtoMessage

func (*IdentifierMatch_Node) ProtoMessage()

func (*IdentifierMatch_Node) ProtoReflect added in v0.0.49

func (x *IdentifierMatch_Node) ProtoReflect() protoreflect.Message

func (*IdentifierMatch_Node) Reset

func (x *IdentifierMatch_Node) Reset()

func (*IdentifierMatch_Node) String

func (x *IdentifierMatch_Node) String() string

type Node

type Node struct {
	Ticket             string                  `protobuf:"bytes,1,opt,name=ticket,proto3" json:"ticket,omitempty"`
	Fact               []*common_go_proto.Fact `protobuf:"bytes,2,rep,name=fact,proto3" json:"fact,omitempty"`
	DefinitionLocation *ExpandedAnchor         `protobuf:"bytes,3,opt,name=definition_location,json=definitionLocation,proto3" json:"definition_location,omitempty"`
	Rank               float64                 `protobuf:"fixed64,4,opt,name=rank,proto3" json:"rank,omitempty"`
	// contains filtered or unexported fields
}

func (*Node) Descriptor deprecated

func (*Node) Descriptor() ([]byte, []int)

Deprecated: Use Node.ProtoReflect.Descriptor instead.

func (*Node) GetDefinitionLocation

func (x *Node) GetDefinitionLocation() *ExpandedAnchor

func (*Node) GetFact

func (x *Node) GetFact() []*common_go_proto.Fact

func (*Node) GetRank added in v0.0.31

func (x *Node) GetRank() float64

func (*Node) GetTicket

func (x *Node) GetTicket() string

func (*Node) ProtoMessage

func (*Node) ProtoMessage()

func (*Node) ProtoReflect added in v0.0.49

func (x *Node) ProtoReflect() protoreflect.Message

func (*Node) Reset

func (x *Node) Reset()

func (*Node) String

func (x *Node) String() string

type PageIndex

type PageIndex struct {
	EdgeKind  string `protobuf:"bytes,1,opt,name=edge_kind,json=edgeKind,proto3" json:"edge_kind,omitempty"`
	EdgeCount int32  `protobuf:"varint,2,opt,name=edge_count,json=edgeCount,proto3" json:"edge_count,omitempty"`
	PageKey   string `protobuf:"bytes,3,opt,name=page_key,json=pageKey,proto3" json:"page_key,omitempty"`
	// contains filtered or unexported fields
}

func (*PageIndex) Descriptor deprecated

func (*PageIndex) Descriptor() ([]byte, []int)

Deprecated: Use PageIndex.ProtoReflect.Descriptor instead.

func (*PageIndex) GetEdgeCount

func (x *PageIndex) GetEdgeCount() int32

func (*PageIndex) GetEdgeKind

func (x *PageIndex) GetEdgeKind() string

func (*PageIndex) GetPageKey

func (x *PageIndex) GetPageKey() string

func (*PageIndex) ProtoMessage

func (*PageIndex) ProtoMessage()

func (*PageIndex) ProtoReflect added in v0.0.49

func (x *PageIndex) ProtoReflect() protoreflect.Message

func (*PageIndex) Reset

func (x *PageIndex) Reset()

func (*PageIndex) String

func (x *PageIndex) String() string

type PagedCrossReferences

type PagedCrossReferences struct {
	MergeWith    []string                          `protobuf:"bytes,7,rep,name=merge_with,json=mergeWith,proto3" json:"merge_with,omitempty"`
	SourceTicket string                            `protobuf:"bytes,1,opt,name=source_ticket,json=sourceTicket,proto3" json:"source_ticket,omitempty"`
	SourceNode   *Node                             `protobuf:"bytes,8,opt,name=source_node,json=sourceNode,proto3" json:"source_node,omitempty"`
	Group        []*PagedCrossReferences_Group     `protobuf:"bytes,2,rep,name=group,proto3" json:"group,omitempty"`
	PageIndex    []*PagedCrossReferences_PageIndex `protobuf:"bytes,3,rep,name=page_index,json=pageIndex,proto3" json:"page_index,omitempty"`
	// Deprecated: Do not use.
	TotalReferences int32                         `protobuf:"varint,4,opt,name=total_references,json=totalReferences,proto3" json:"total_references,omitempty"`
	Incomplete      bool                          `protobuf:"varint,5,opt,name=incomplete,proto3" json:"incomplete,omitempty"`
	MarkedSource    *common_go_proto.MarkedSource `protobuf:"bytes,6,opt,name=marked_source,json=markedSource,proto3" json:"marked_source,omitempty"`
	// contains filtered or unexported fields
}

func (*PagedCrossReferences) Descriptor deprecated

func (*PagedCrossReferences) Descriptor() ([]byte, []int)

Deprecated: Use PagedCrossReferences.ProtoReflect.Descriptor instead.

func (*PagedCrossReferences) GetGroup

func (*PagedCrossReferences) GetIncomplete

func (x *PagedCrossReferences) GetIncomplete() bool

func (*PagedCrossReferences) GetMarkedSource

func (x *PagedCrossReferences) GetMarkedSource() *common_go_proto.MarkedSource

func (*PagedCrossReferences) GetMergeWith

func (x *PagedCrossReferences) GetMergeWith() []string

func (*PagedCrossReferences) GetPageIndex

func (*PagedCrossReferences) GetSourceNode

func (x *PagedCrossReferences) GetSourceNode() *Node

func (*PagedCrossReferences) GetSourceTicket

func (x *PagedCrossReferences) GetSourceTicket() string

func (*PagedCrossReferences) GetTotalReferences deprecated

func (x *PagedCrossReferences) GetTotalReferences() int32

Deprecated: Do not use.

func (*PagedCrossReferences) ProtoMessage

func (*PagedCrossReferences) ProtoMessage()

func (*PagedCrossReferences) ProtoReflect added in v0.0.49

func (x *PagedCrossReferences) ProtoReflect() protoreflect.Message

func (*PagedCrossReferences) Reset

func (x *PagedCrossReferences) Reset()

func (*PagedCrossReferences) String

func (x *PagedCrossReferences) String() string

type PagedCrossReferences_Caller

type PagedCrossReferences_Caller struct {
	Caller         *ExpandedAnchor               `protobuf:"bytes,1,opt,name=caller,proto3" json:"caller,omitempty"`
	SemanticCaller string                        `protobuf:"bytes,2,opt,name=semantic_caller,json=semanticCaller,proto3" json:"semantic_caller,omitempty"`
	MarkedSource   *common_go_proto.MarkedSource `protobuf:"bytes,3,opt,name=marked_source,json=markedSource,proto3" json:"marked_source,omitempty"`
	Callsite       []*ExpandedAnchor             `protobuf:"bytes,4,rep,name=callsite,proto3" json:"callsite,omitempty"`
	// contains filtered or unexported fields
}

func (*PagedCrossReferences_Caller) Descriptor deprecated

func (*PagedCrossReferences_Caller) Descriptor() ([]byte, []int)

Deprecated: Use PagedCrossReferences_Caller.ProtoReflect.Descriptor instead.

func (*PagedCrossReferences_Caller) GetCaller

func (*PagedCrossReferences_Caller) GetCallsite

func (x *PagedCrossReferences_Caller) GetCallsite() []*ExpandedAnchor

func (*PagedCrossReferences_Caller) GetMarkedSource

func (*PagedCrossReferences_Caller) GetSemanticCaller

func (x *PagedCrossReferences_Caller) GetSemanticCaller() string

func (*PagedCrossReferences_Caller) ProtoMessage

func (*PagedCrossReferences_Caller) ProtoMessage()

func (*PagedCrossReferences_Caller) ProtoReflect added in v0.0.49

func (*PagedCrossReferences_Caller) Reset

func (x *PagedCrossReferences_Caller) Reset()

func (*PagedCrossReferences_Caller) String

func (x *PagedCrossReferences_Caller) String() string

type PagedCrossReferences_Group

type PagedCrossReferences_Group struct {
	Kind        string                              `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"`
	BuildConfig string                              `protobuf:"bytes,5,opt,name=build_config,json=buildConfig,proto3" json:"build_config,omitempty"`
	Anchor      []*ExpandedAnchor                   `protobuf:"bytes,2,rep,name=anchor,proto3" json:"anchor,omitempty"`
	RelatedNode []*PagedCrossReferences_RelatedNode `protobuf:"bytes,3,rep,name=related_node,json=relatedNode,proto3" json:"related_node,omitempty"`
	Caller      []*PagedCrossReferences_Caller      `protobuf:"bytes,4,rep,name=caller,proto3" json:"caller,omitempty"`
	FileInfo    []*FileInfo                         `protobuf:"bytes,6,rep,name=file_info,json=fileInfo,proto3" json:"file_info,omitempty"`
	// contains filtered or unexported fields
}

func (*PagedCrossReferences_Group) Descriptor deprecated

func (*PagedCrossReferences_Group) Descriptor() ([]byte, []int)

Deprecated: Use PagedCrossReferences_Group.ProtoReflect.Descriptor instead.

func (*PagedCrossReferences_Group) GetAnchor

func (x *PagedCrossReferences_Group) GetAnchor() []*ExpandedAnchor

func (*PagedCrossReferences_Group) GetBuildConfig added in v0.0.31

func (x *PagedCrossReferences_Group) GetBuildConfig() string

func (*PagedCrossReferences_Group) GetCaller

func (*PagedCrossReferences_Group) GetFileInfo added in v0.0.49

func (x *PagedCrossReferences_Group) GetFileInfo() []*FileInfo

func (*PagedCrossReferences_Group) GetKind

func (x *PagedCrossReferences_Group) GetKind() string

func (*PagedCrossReferences_Group) GetRelatedNode

func (*PagedCrossReferences_Group) ProtoMessage

func (*PagedCrossReferences_Group) ProtoMessage()

func (*PagedCrossReferences_Group) ProtoReflect added in v0.0.49

func (*PagedCrossReferences_Group) Reset

func (x *PagedCrossReferences_Group) Reset()

func (*PagedCrossReferences_Group) String

func (x *PagedCrossReferences_Group) String() string

type PagedCrossReferences_Page

type PagedCrossReferences_Page struct {
	PageKey      string                      `protobuf:"bytes,1,opt,name=page_key,json=pageKey,proto3" json:"page_key,omitempty"`
	SourceTicket string                      `protobuf:"bytes,2,opt,name=source_ticket,json=sourceTicket,proto3" json:"source_ticket,omitempty"`
	Group        *PagedCrossReferences_Group `protobuf:"bytes,3,opt,name=group,proto3" json:"group,omitempty"`
	// contains filtered or unexported fields
}

func (*PagedCrossReferences_Page) Descriptor deprecated

func (*PagedCrossReferences_Page) Descriptor() ([]byte, []int)

Deprecated: Use PagedCrossReferences_Page.ProtoReflect.Descriptor instead.

func (*PagedCrossReferences_Page) GetGroup

func (*PagedCrossReferences_Page) GetPageKey

func (x *PagedCrossReferences_Page) GetPageKey() string

func (*PagedCrossReferences_Page) GetSourceTicket

func (x *PagedCrossReferences_Page) GetSourceTicket() string

func (*PagedCrossReferences_Page) ProtoMessage

func (*PagedCrossReferences_Page) ProtoMessage()

func (*PagedCrossReferences_Page) ProtoReflect added in v0.0.49

func (*PagedCrossReferences_Page) Reset

func (x *PagedCrossReferences_Page) Reset()

func (*PagedCrossReferences_Page) String

func (x *PagedCrossReferences_Page) String() string

type PagedCrossReferences_PageIndex

type PagedCrossReferences_PageIndex struct {
	Kind        string `protobuf:"bytes,1,opt,name=kind,proto3" json:"kind,omitempty"`
	Count       int32  `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	PageKey     string `protobuf:"bytes,3,opt,name=page_key,json=pageKey,proto3" json:"page_key,omitempty"`
	BuildConfig string `protobuf:"bytes,4,opt,name=build_config,json=buildConfig,proto3" json:"build_config,omitempty"`
	// contains filtered or unexported fields
}

func (*PagedCrossReferences_PageIndex) Descriptor deprecated

func (*PagedCrossReferences_PageIndex) Descriptor() ([]byte, []int)

Deprecated: Use PagedCrossReferences_PageIndex.ProtoReflect.Descriptor instead.

func (*PagedCrossReferences_PageIndex) GetBuildConfig added in v0.0.31

func (x *PagedCrossReferences_PageIndex) GetBuildConfig() string

func (*PagedCrossReferences_PageIndex) GetCount

func (x *PagedCrossReferences_PageIndex) GetCount() int32

func (*PagedCrossReferences_PageIndex) GetKind

func (*PagedCrossReferences_PageIndex) GetPageKey

func (x *PagedCrossReferences_PageIndex) GetPageKey() string

func (*PagedCrossReferences_PageIndex) ProtoMessage

func (*PagedCrossReferences_PageIndex) ProtoMessage()

func (*PagedCrossReferences_PageIndex) ProtoReflect added in v0.0.49

func (*PagedCrossReferences_PageIndex) Reset

func (x *PagedCrossReferences_PageIndex) Reset()

func (*PagedCrossReferences_PageIndex) String

type PagedCrossReferences_RelatedNode

type PagedCrossReferences_RelatedNode struct {
	Node    *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
	Ordinal int32 `protobuf:"varint,2,opt,name=ordinal,proto3" json:"ordinal,omitempty"`
	// contains filtered or unexported fields
}

func (*PagedCrossReferences_RelatedNode) Descriptor deprecated

func (*PagedCrossReferences_RelatedNode) Descriptor() ([]byte, []int)

Deprecated: Use PagedCrossReferences_RelatedNode.ProtoReflect.Descriptor instead.

func (*PagedCrossReferences_RelatedNode) GetNode

func (x *PagedCrossReferences_RelatedNode) GetNode() *Node

func (*PagedCrossReferences_RelatedNode) GetOrdinal

func (x *PagedCrossReferences_RelatedNode) GetOrdinal() int32

func (*PagedCrossReferences_RelatedNode) ProtoMessage

func (*PagedCrossReferences_RelatedNode) ProtoMessage()

func (*PagedCrossReferences_RelatedNode) ProtoReflect added in v0.0.49

func (*PagedCrossReferences_RelatedNode) Reset

func (*PagedCrossReferences_RelatedNode) String

type PagedEdgeSet

type PagedEdgeSet struct {
	Source *Node        `protobuf:"bytes,1,opt,name=source,proto3" json:"source,omitempty"`
	Group  []*EdgeGroup `protobuf:"bytes,2,rep,name=group,proto3" json:"group,omitempty"`
	// Deprecated: Do not use.
	TotalEdges int32        `protobuf:"varint,3,opt,name=total_edges,json=totalEdges,proto3" json:"total_edges,omitempty"`
	PageIndex  []*PageIndex `protobuf:"bytes,4,rep,name=page_index,json=pageIndex,proto3" json:"page_index,omitempty"`
	// contains filtered or unexported fields
}

func (*PagedEdgeSet) Descriptor deprecated

func (*PagedEdgeSet) Descriptor() ([]byte, []int)

Deprecated: Use PagedEdgeSet.ProtoReflect.Descriptor instead.

func (*PagedEdgeSet) GetGroup

func (x *PagedEdgeSet) GetGroup() []*EdgeGroup

func (*PagedEdgeSet) GetPageIndex

func (x *PagedEdgeSet) GetPageIndex() []*PageIndex

func (*PagedEdgeSet) GetSource

func (x *PagedEdgeSet) GetSource() *Node

func (*PagedEdgeSet) GetTotalEdges deprecated

func (x *PagedEdgeSet) GetTotalEdges() int32

Deprecated: Do not use.

func (*PagedEdgeSet) ProtoMessage

func (*PagedEdgeSet) ProtoMessage()

func (*PagedEdgeSet) ProtoReflect added in v0.0.49

func (x *PagedEdgeSet) ProtoReflect() protoreflect.Message

func (*PagedEdgeSet) Reset

func (x *PagedEdgeSet) Reset()

func (*PagedEdgeSet) String

func (x *PagedEdgeSet) String() string

type RawAnchor

type RawAnchor struct {
	Ticket             string `protobuf:"bytes,1,opt,name=ticket,proto3" json:"ticket,omitempty"`
	StartOffset        int32  `protobuf:"varint,2,opt,name=start_offset,json=startOffset,proto3" json:"start_offset,omitempty"`
	EndOffset          int32  `protobuf:"varint,3,opt,name=end_offset,json=endOffset,proto3" json:"end_offset,omitempty"`
	SnippetStart       int32  `protobuf:"varint,4,opt,name=snippet_start,json=snippetStart,proto3" json:"snippet_start,omitempty"`
	SnippetEnd         int32  `protobuf:"varint,5,opt,name=snippet_end,json=snippetEnd,proto3" json:"snippet_end,omitempty"`
	BuildConfiguration string `protobuf:"bytes,6,opt,name=build_configuration,json=buildConfiguration,proto3" json:"build_configuration,omitempty"`
	// contains filtered or unexported fields
}

func (*RawAnchor) Descriptor deprecated

func (*RawAnchor) Descriptor() ([]byte, []int)

Deprecated: Use RawAnchor.ProtoReflect.Descriptor instead.

func (*RawAnchor) GetBuildConfiguration added in v0.0.30

func (x *RawAnchor) GetBuildConfiguration() string

func (*RawAnchor) GetEndOffset

func (x *RawAnchor) GetEndOffset() int32

func (*RawAnchor) GetSnippetEnd

func (x *RawAnchor) GetSnippetEnd() int32

func (*RawAnchor) GetSnippetStart

func (x *RawAnchor) GetSnippetStart() int32

func (*RawAnchor) GetStartOffset

func (x *RawAnchor) GetStartOffset() int32

func (*RawAnchor) GetTicket

func (x *RawAnchor) GetTicket() string

func (*RawAnchor) ProtoMessage

func (*RawAnchor) ProtoMessage()

func (*RawAnchor) ProtoReflect added in v0.0.49

func (x *RawAnchor) ProtoReflect() protoreflect.Message

func (*RawAnchor) Reset

func (x *RawAnchor) Reset()

func (*RawAnchor) String

func (x *RawAnchor) String() string

type Relatives

type Relatives struct {
	Tickets []string       `protobuf:"bytes,1,rep,name=tickets,proto3" json:"tickets,omitempty"`
	Type    Relatives_Type `protobuf:"varint,2,opt,name=type,proto3,enum=kythe.proto.serving.Relatives_Type" json:"type,omitempty"`
	// contains filtered or unexported fields
}

func (*Relatives) Descriptor deprecated

func (*Relatives) Descriptor() ([]byte, []int)

Deprecated: Use Relatives.ProtoReflect.Descriptor instead.

func (*Relatives) GetTickets

func (x *Relatives) GetTickets() []string

func (*Relatives) GetType

func (x *Relatives) GetType() Relatives_Type

func (*Relatives) ProtoMessage

func (*Relatives) ProtoMessage()

func (*Relatives) ProtoReflect added in v0.0.49

func (x *Relatives) ProtoReflect() protoreflect.Message

func (*Relatives) Reset

func (x *Relatives) Reset()

func (*Relatives) String

func (x *Relatives) String() string

type Relatives_Type

type Relatives_Type int32
const (
	Relatives_UNKNOWN  Relatives_Type = 0
	Relatives_PARENTS  Relatives_Type = 1
	Relatives_CHILDREN Relatives_Type = 2
)

func (Relatives_Type) Descriptor added in v0.0.49

func (Relatives_Type) Enum added in v0.0.49

func (x Relatives_Type) Enum() *Relatives_Type

func (Relatives_Type) EnumDescriptor deprecated

func (Relatives_Type) EnumDescriptor() ([]byte, []int)

Deprecated: Use Relatives_Type.Descriptor instead.

func (Relatives_Type) Number added in v0.0.49

func (Relatives_Type) String

func (x Relatives_Type) String() string

func (Relatives_Type) Type added in v0.0.49

Jump to

Keyboard shortcuts

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