Struct rusoto_xray::BatchGetTracesResult[][src]

pub struct BatchGetTracesResult {
    pub next_token: Option<String>,
    pub traces: Option<Vec<Trace>>,
    pub unprocessed_trace_ids: Option<Vec<String>>,
}

Fields

Pagination token. Not used.

Full traces for the specified requests.

Trace IDs of requests that haven't been processed.

Trait Implementations

impl Default for BatchGetTracesResult
[src]

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

impl Debug for BatchGetTracesResult
[src]

Formats the value using the given formatter. Read more

impl Clone for BatchGetTracesResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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