Struct rusoto_xray::GetServiceGraphResult[][src]

pub struct GetServiceGraphResult {
    pub end_time: Option<f64>,
    pub next_token: Option<String>,
    pub services: Option<Vec<Service>>,
    pub start_time: Option<f64>,
}

Fields

The end of the time frame for which the graph was generated.

Pagination token. Not used.

The services that have processed a traced request during the specified time frame.

The start of the time frame for which the graph was generated.

Trait Implementations

impl Default for GetServiceGraphResult
[src]

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

impl Debug for GetServiceGraphResult
[src]

Formats the value using the given formatter. Read more

impl Clone for GetServiceGraphResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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