Struct rusoto_xray::Edge[][src]

pub struct Edge {
    pub aliases: Option<Vec<Alias>>,
    pub end_time: Option<f64>,
    pub reference_id: Option<i64>,
    pub response_time_histogram: Option<Vec<HistogramEntry>>,
    pub start_time: Option<f64>,
    pub summary_statistics: Option<EdgeStatistics>,
}

Information about a connection between two services.

Fields

Aliases for the edge.

The end time of the last segment on the edge.

Identifier of the edge. Unique within a service map.

A histogram that maps the spread of client response times on an edge.

The start time of the first segment on the edge.

Response statistics for segments on the edge.

Trait Implementations

impl Default for Edge
[src]

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

impl Debug for Edge
[src]

Formats the value using the given formatter. Read more

impl Clone for Edge
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for Edge

impl Sync for Edge