[][src]Struct rusoto_xray::AnnotationValue

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

boolean_value: Option<bool>

Value for a Boolean annotation.

number_value: Option<f64>

Value for a Number annotation.

string_value: Option<String>

Value for a String annotation.

Trait Implementations

impl Clone for AnnotationValue[src]

impl Debug for AnnotationValue[src]

impl Default for AnnotationValue[src]

impl<'de> Deserialize<'de> for AnnotationValue[src]

impl PartialEq<AnnotationValue> for AnnotationValue[src]

impl StructuralPartialEq for AnnotationValue[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.