Struct rusoto_xray::GetTraceSummariesResult[][src]

pub struct GetTraceSummariesResult {
    pub approximate_time: Option<f64>,
    pub next_token: Option<String>,
    pub trace_summaries: Option<Vec<TraceSummary>>,
    pub traces_processed_count: Option<i64>,
}

Fields

The start time of this page of results.

If the requested time frame contained more than one page of results, you can use this token to retrieve the next page. The first page contains the most most recent results, closest to the end of the time frame.

Trace IDs and metadata for traces that were found in the specified time frame.

The number of traces that were processed to get this set of summaries.

Trait Implementations

impl Default for GetTraceSummariesResult
[src]

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

impl Debug for GetTraceSummariesResult
[src]

Formats the value using the given formatter. Read more

impl Clone for GetTraceSummariesResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetTraceSummariesResult
[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