Struct rusoto_xray::AnnotationValue[][src]

pub struct AnnotationValue {
    pub boolean_value: Option<bool>,
    pub number_value: Option<f64>,
    pub string_value: Option<String>,
}

Value of a segment annotation. Has one of three value types: Number, Boolean or String.

Fields

Value for a Boolean annotation.

Value for a Number annotation.

Value for a String annotation.

Trait Implementations

impl Default for AnnotationValue
[src]

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

impl Debug for AnnotationValue
[src]

Formats the value using the given formatter. Read more

impl Clone for AnnotationValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AnnotationValue
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations