...

Package deps_proto

import "github.com/bazelbuild/buildtools/deps_proto"
Overview
Index

Overview ▾

Index ▾

Variables
type Dependencies
    func (*Dependencies) Descriptor() ([]byte, []int)
    func (x *Dependencies) GetContainedPackage() []string
    func (x *Dependencies) GetDependency() []*Dependency
    func (x *Dependencies) GetRuleLabel() string
    func (x *Dependencies) GetSuccess() bool
    func (*Dependencies) ProtoMessage()
    func (x *Dependencies) ProtoReflect() protoreflect.Message
    func (x *Dependencies) Reset()
    func (x *Dependencies) String() string
type Dependency
    func (*Dependency) Descriptor() ([]byte, []int)
    func (x *Dependency) GetKind() Dependency_Kind
    func (x *Dependency) GetLocation() []*SourceLocation
    func (x *Dependency) GetPath() string
    func (*Dependency) ProtoMessage()
    func (x *Dependency) ProtoReflect() protoreflect.Message
    func (x *Dependency) Reset()
    func (x *Dependency) String() string
type Dependency_Kind
    func (Dependency_Kind) Descriptor() protoreflect.EnumDescriptor
    func (x Dependency_Kind) Enum() *Dependency_Kind
    func (Dependency_Kind) EnumDescriptor() ([]byte, []int)
    func (x Dependency_Kind) Number() protoreflect.EnumNumber
    func (x Dependency_Kind) String() string
    func (Dependency_Kind) Type() protoreflect.EnumType
    func (x *Dependency_Kind) UnmarshalJSON(b []byte) error
type SourceLocation
    func (*SourceLocation) Descriptor() ([]byte, []int)
    func (x *SourceLocation) GetColumn() int32
    func (x *SourceLocation) GetLine() int32
    func (x *SourceLocation) GetPath() string
    func (*SourceLocation) ProtoMessage()
    func (x *SourceLocation) ProtoReflect() protoreflect.Message
    func (x *SourceLocation) Reset()
    func (x *SourceLocation) String() string

Package files

deps.gen.pb.go

Variables

Enum value maps for Dependency_Kind.

var (
    Dependency_Kind_name = map[int32]string{
        0: "EXPLICIT",
        1: "IMPLICIT",
        2: "UNUSED",
        3: "INCOMPLETE",
    }
    Dependency_Kind_value = map[string]int32{
        "EXPLICIT":   0,
        "IMPLICIT":   1,
        "UNUSED":     2,
        "INCOMPLETE": 3,
    }
)
var File_deps_proto_deps_proto protoreflect.FileDescriptor

type Dependencies

type Dependencies struct {
    Dependency       []*Dependency `protobuf:"bytes,1,rep,name=dependency" json:"dependency,omitempty"`
    RuleLabel        *string       `protobuf:"bytes,2,opt,name=rule_label,json=ruleLabel" json:"rule_label,omitempty"`
    Success          *bool         `protobuf:"varint,3,opt,name=success" json:"success,omitempty"`
    ContainedPackage []string      `protobuf:"bytes,4,rep,name=contained_package,json=containedPackage" json:"contained_package,omitempty"`
    // contains filtered or unexported fields
}

func (*Dependencies) Descriptor

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

Deprecated: Use Dependencies.ProtoReflect.Descriptor instead.

func (*Dependencies) GetContainedPackage

func (x *Dependencies) GetContainedPackage() []string

func (*Dependencies) GetDependency

func (x *Dependencies) GetDependency() []*Dependency

func (*Dependencies) GetRuleLabel

func (x *Dependencies) GetRuleLabel() string

func (*Dependencies) GetSuccess

func (x *Dependencies) GetSuccess() bool

func (*Dependencies) ProtoMessage

func (*Dependencies) ProtoMessage()

func (*Dependencies) ProtoReflect

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

func (*Dependencies) Reset

func (x *Dependencies) Reset()

func (*Dependencies) String

func (x *Dependencies) String() string

type Dependency

type Dependency struct {
    Path     *string           `protobuf:"bytes,1,req,name=path" json:"path,omitempty"`
    Kind     *Dependency_Kind  `protobuf:"varint,2,req,name=kind,enum=blaze_deps.Dependency_Kind" json:"kind,omitempty"`
    Location []*SourceLocation `protobuf:"bytes,3,rep,name=location" json:"location,omitempty"`
    // contains filtered or unexported fields
}

func (*Dependency) Descriptor

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

Deprecated: Use Dependency.ProtoReflect.Descriptor instead.

func (*Dependency) GetKind

func (x *Dependency) GetKind() Dependency_Kind

func (*Dependency) GetLocation

func (x *Dependency) GetLocation() []*SourceLocation

func (*Dependency) GetPath

func (x *Dependency) GetPath() string

func (*Dependency) ProtoMessage

func (*Dependency) ProtoMessage()

func (*Dependency) ProtoReflect

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

func (*Dependency) Reset

func (x *Dependency) Reset()

func (*Dependency) String

func (x *Dependency) String() string

type Dependency_Kind

type Dependency_Kind int32
const (
    Dependency_EXPLICIT   Dependency_Kind = 0
    Dependency_IMPLICIT   Dependency_Kind = 1
    Dependency_UNUSED     Dependency_Kind = 2
    Dependency_INCOMPLETE Dependency_Kind = 3
)

func (Dependency_Kind) Descriptor

func (Dependency_Kind) Descriptor() protoreflect.EnumDescriptor

func (Dependency_Kind) Enum

func (x Dependency_Kind) Enum() *Dependency_Kind

func (Dependency_Kind) EnumDescriptor

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

Deprecated: Use Dependency_Kind.Descriptor instead.

func (Dependency_Kind) Number

func (x Dependency_Kind) Number() protoreflect.EnumNumber

func (Dependency_Kind) String

func (x Dependency_Kind) String() string

func (Dependency_Kind) Type

func (Dependency_Kind) Type() protoreflect.EnumType

func (*Dependency_Kind) UnmarshalJSON

func (x *Dependency_Kind) UnmarshalJSON(b []byte) error

Deprecated: Do not use.

type SourceLocation

type SourceLocation struct {
    Path   *string `protobuf:"bytes,1,req,name=path" json:"path,omitempty"`
    Line   *int32  `protobuf:"varint,2,opt,name=line" json:"line,omitempty"`
    Column *int32  `protobuf:"varint,3,opt,name=column" json:"column,omitempty"`
    // contains filtered or unexported fields
}

func (*SourceLocation) Descriptor

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

Deprecated: Use SourceLocation.ProtoReflect.Descriptor instead.

func (*SourceLocation) GetColumn

func (x *SourceLocation) GetColumn() int32

func (*SourceLocation) GetLine

func (x *SourceLocation) GetLine() int32

func (*SourceLocation) GetPath

func (x *SourceLocation) GetPath() string

func (*SourceLocation) ProtoMessage

func (*SourceLocation) ProtoMessage()

func (*SourceLocation) ProtoReflect

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

func (*SourceLocation) Reset

func (x *SourceLocation) Reset()

func (*SourceLocation) String

func (x *SourceLocation) String() string