Struct gapi_grpc::google::devtools::resultstore::v2::Configuration[][src]

pub struct Configuration {
    pub name: String,
    pub id: Option<Id>,
    pub status_attributes: Option<StatusAttributes>,
    pub configuration_attributes: Option<ConfigurationAttributes>,
    pub properties: Vec<Property>,
    pub display_name: String,
}

Represents a configuration within an Invocation associated with one or more ConfiguredTargets. It captures the environment and other settings that were used.

Fields

name: String

The format of this Configuration resource name must be: invocations/${INVOCATION_ID}/configs/${url_encode(CONFIG_ID)} The configuration ID of “default” should be preferred for the default configuration in a single-config invocation.

id: Option<Id>

The resource ID components that identify the Configuration. They must match the resource name after proper encoding.

status_attributes: Option<StatusAttributes>

The aggregate status for this configuration.

configuration_attributes: Option<ConfigurationAttributes>

Attributes that apply only to this configuration.

properties: Vec<Property>

Arbitrary name-value pairs. This is implemented as a multi-map. Multiple properties are allowed with the same key. Properties will be returned in lexicographical order by key.

display_name: String

A human-readable name for Configuration for UIs. It is recommended that this name be unique. If omitted, UIs should default to configuration_id.

Trait Implementations

impl Clone for Configuration[src]

impl Debug for Configuration[src]

impl Default for Configuration[src]

impl Message for Configuration[src]

impl PartialEq<Configuration> for Configuration[src]

impl StructuralPartialEq for Configuration[src]

Auto Trait Implementations

impl RefUnwindSafe for Configuration

impl Send for Configuration

impl Sync for Configuration

impl Unpin for Configuration

impl UnwindSafe for Configuration

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]