Struct google_cloudtrace2::AttributeValue[][src]

pub struct AttributeValue {
    pub string_value: Option<TruncatableString>,
    pub int_value: Option<String>,
    pub bool_value: Option<bool>,
}

The allowed types for [VALUE] in a [KEY]:[VALUE] attribute.

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

Fields

A string up to 256 bytes long.

A 64-bit signed integer.

A Boolean value represented by true or false.

Trait Implementations

impl Default for AttributeValue
[src]

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

impl Clone for AttributeValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AttributeValue
[src]

Formats the value using the given formatter. Read more

impl Part for AttributeValue
[src]

Auto Trait Implementations