@@ -40,7 +40,7 @@ use super::stream_sink::GrpcEventStreamSink;
4040use super :: stream_tracing:: TracingEventStreamSink ;
4141
4242#[ derive( Debug , ProvidesStaticType , Display , Trace , NoSerialize , Allocative ) ]
43- #[ display( "<build_status >" ) ]
43+ #[ display( "<bazel.build.BuildStatus >" ) ]
4444pub struct BuildStatus {
4545 success : bool ,
4646 code : Option < i32 > ,
@@ -52,7 +52,7 @@ impl<'v> AllocValue<'v> for BuildStatus {
5252 }
5353}
5454
55- #[ starlark_value( type = "build_status " ) ]
55+ #[ starlark_value( type = "bazel.build.BuildStatus " ) ]
5656impl < ' v > values:: StarlarkValue < ' v > for BuildStatus {
5757 fn get_methods ( ) -> Option < & ' static Methods > {
5858 static RES : MethodsStatic = MethodsStatic :: new ( ) ;
@@ -75,7 +75,7 @@ pub(crate) fn build_status_methods(registry: &mut MethodsBuilder) {
7575}
7676
7777#[ derive( Debug , Display , ProvidesStaticType , NoSerialize , Allocative , Clone ) ]
78- #[ display( "<build_event_sink >" ) ]
78+ #[ display( "<bazel.build.BuildEventSink >" ) ]
7979pub enum BuildEventSink {
8080 Grpc {
8181 uri : String ,
@@ -85,7 +85,7 @@ pub enum BuildEventSink {
8585
8686starlark_simple_value ! ( BuildEventSink ) ;
8787
88- #[ starlark_value( type = "build_event_sink " ) ]
88+ #[ starlark_value( type = "bazel.build.BuildEventSink " ) ]
8989impl < ' v > values:: StarlarkValue < ' v > for BuildEventSink { }
9090
9191impl < ' v > UnpackValue < ' v > for BuildEventSink {
@@ -108,7 +108,7 @@ impl BuildEventSink {
108108}
109109
110110#[ derive( Debug , Display , ProvidesStaticType , Trace , NoSerialize , Allocative ) ]
111- #[ display( "<build>" ) ]
111+ #[ display( "<bazel. build.Build >" ) ]
112112pub struct Build {
113113 #[ allocative( skip) ]
114114 event_stream : RefCell < Option < EventStream > > ,
@@ -214,7 +214,7 @@ impl<'v> AllocValue<'v> for Build {
214214 }
215215}
216216
217- #[ starlark_value( type = "build" ) ]
217+ #[ starlark_value( type = "bazel. build.Build " ) ]
218218impl < ' v > values:: StarlarkValue < ' v > for Build {
219219 fn get_methods ( ) -> Option < & ' static Methods > {
220220 static RES : MethodsStatic = MethodsStatic :: new ( ) ;
0 commit comments