[][src]Struct rusoto_xray::Trace

pub struct Trace {
    pub duration: Option<f64>,
    pub id: Option<String>,
    pub limit_exceeded: Option<bool>,
    pub segments: Option<Vec<Segment>>,
}

A collection of segment documents with matching trace IDs.

Fields

duration: Option<f64>

The length of time in seconds between the start time of the root segment and the end time of the last segment that completed.

id: Option<String>

The unique identifier for the request that generated the trace's segments and subsegments.

limit_exceeded: Option<bool>

LimitExceeded is set to true when the trace has exceeded one of the defined quotas. For more information about quotas, see AWS X-Ray endpoints and quotas.

segments: Option<Vec<Segment>>

Segment documents for the segments and subsegments that comprise the trace.

Trait Implementations

impl Clone for Trace[src]

impl Debug for Trace[src]

impl Default for Trace[src]

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

impl PartialEq<Trace> for Trace[src]

impl StructuralPartialEq for Trace[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: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.