Struct google_monitoring3::CollectdPayloadError[][src]

pub struct CollectdPayloadError {
    pub index: Option<i32>,
    pub value_errors: Option<Vec<CollectdValueError>>,
    pub error: Option<Status>,
}

Describes the error status for payloads that were not written.

This type is not used in any activity, and only used as part of another schema.

Fields

The zero-based index in CreateCollectdTimeSeriesRequest.collectd_payloads.

Records the error status for values that were not written due to an error.Failed payloads for which nothing is written will not include partial value errors.

Records the error status for the payload. If this field is present, the partial errors for nested values won't be populated.

Trait Implementations

impl Default for CollectdPayloadError
[src]

Returns the "default value" for a type. Read more

impl Clone for CollectdPayloadError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CollectdPayloadError
[src]

Formats the value using the given formatter. Read more

impl Part for CollectdPayloadError
[src]

Auto Trait Implementations