Struct aws_sdk_xray::model::Edge [−][src]
#[non_exhaustive]pub struct Edge {
pub reference_id: Option<i32>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub summary_statistics: Option<EdgeStatistics>,
pub response_time_histogram: Option<Vec<HistogramEntry>>,
pub aliases: Option<Vec<Alias>>,
}
Expand description
Information about a connection between two services.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.reference_id: Option<i32>
Identifier of the edge. Unique within a service map.
start_time: Option<DateTime>
The start time of the first segment on the edge.
end_time: Option<DateTime>
The end time of the last segment on the edge.
summary_statistics: Option<EdgeStatistics>
Response statistics for segments on the edge.
response_time_histogram: Option<Vec<HistogramEntry>>
A histogram that maps the spread of client response times on an edge.
aliases: Option<Vec<Alias>>
Aliases for the edge.
Implementations
Identifier of the edge. Unique within a service map.
The start time of the first segment on the edge.
Response statistics for segments on the edge.
A histogram that maps the spread of client response times on an edge.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Edge
impl UnwindSafe for Edge
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more