Struct google_cloudtrace2::api::Attributes
source · pub struct Attributes {
pub attribute_map: Option<HashMap<String, AttributeValue>>,
pub dropped_attributes_count: Option<i32>,
}Expand description
A set of attributes as key-value pairs.
This type is not used in any activity, and only used as part of another schema.
Fields§
§attribute_map: Option<HashMap<String, AttributeValue>>A set of attributes. Each attribute’s key can be up to 128 bytes long. The value can be a string up to 256 bytes, a signed 64-bit integer, or the boolean values true or false. For example: “/instance_id”: { “string_value”: { “value”: “my-instance” } } “/http/request_bytes”: { “int_value”: 300 } “abc.com/myattribute”: { “bool_value”: false }
dropped_attributes_count: Option<i32>The number of attributes that were discarded. Attributes can be discarded because their keys are too long or because there are too many attributes. If this value is 0 then all attributes are valid.
Trait Implementations§
source§impl Clone for Attributes
impl Clone for Attributes
source§fn clone(&self) -> Attributes
fn clone(&self) -> Attributes
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for Attributes
impl Debug for Attributes
source§impl Default for Attributes
impl Default for Attributes
source§fn default() -> Attributes
fn default() -> Attributes
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for Attributes
impl<'de> Deserialize<'de> for Attributes
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more