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 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() ([]byte, []int)
Deprecated: Use Dependencies.ProtoReflect.Descriptor instead.
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 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() ([]byte, []int)
Deprecated: Use Dependency.ProtoReflect.Descriptor instead.
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 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() protoreflect.EnumDescriptor
func (x Dependency_Kind) Enum() *Dependency_Kind
func (Dependency_Kind) EnumDescriptor() ([]byte, []int)
Deprecated: Use Dependency_Kind.Descriptor instead.
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
Deprecated: Do not use.
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() ([]byte, []int)
Deprecated: Use SourceLocation.ProtoReflect.Descriptor instead.
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