Struct google_api_proto::google::devtools::resultstore::v2::InvocationAttributes
source · pub struct InvocationAttributes {
pub project_id: String,
pub users: Vec<String>,
pub labels: Vec<String>,
pub description: String,
pub invocation_contexts: Vec<InvocationContext>,
pub exit_code: i32,
}
Expand description
Attributes that apply to all invocations.
Fields§
§project_id: String
Immutable. The Cloud Project that owns this invocation (this is different than the Consumer Cloud Project that calls this API). This must be set in the CreateInvocation call, and can’t be changed. As input, callers can set this field to a project id (string) or a stringified int64 project number. As output, the API populates this field with the stringified int64 project number (per https://google.aip.dev/cloud/2510).
users: Vec<String>
The list of users in the command chain. The first user in this sequence is the one who instigated the first command in the chain. For example, this might contain just the user that ran a Bazel command, or a robot that tested a change as part of a CI system. It could also contain the user that manually triggered a CI test, then the robot that ran the test.
labels: Vec<String>
Labels to categorize this invocation. This is implemented as a set. All labels will be unique. Any duplicate labels added will be ignored. Labels will be returned in lexicographical order. Labels should be a list of words describing the Invocation. Labels should be short, easy to read, and you shouldn’t have more than a handful. Labels should not be used for unique properties such as unique IDs. Use properties in cases that don’t meet these conditions.
description: String
This field describes the overall context or purpose of this invocation. It will be used in the UI to give users more information about how or why this invocation was run.
invocation_contexts: Vec<InvocationContext>
If this Invocation was run in the context of a larger Continuous Integration build or other automated system, this field may contain more information about the greater context.
exit_code: i32
Exit code of the process that ran the invocation. A non-zero value means failure. For example, the exit code of a “bazel test” command.
Trait Implementations§
source§impl Clone for InvocationAttributes
impl Clone for InvocationAttributes
source§fn clone(&self) -> InvocationAttributes
fn clone(&self) -> InvocationAttributes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InvocationAttributes
impl Debug for InvocationAttributes
source§impl Default for InvocationAttributes
impl Default for InvocationAttributes
source§impl Message for InvocationAttributes
impl Message for InvocationAttributes
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for InvocationAttributes
impl PartialEq for InvocationAttributes
source§fn eq(&self, other: &InvocationAttributes) -> bool
fn eq(&self, other: &InvocationAttributes) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InvocationAttributes
Auto Trait Implementations§
impl Freeze for InvocationAttributes
impl RefUnwindSafe for InvocationAttributes
impl Send for InvocationAttributes
impl Sync for InvocationAttributes
impl Unpin for InvocationAttributes
impl UnwindSafe for InvocationAttributes
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request