Struct aws_sdk_xray::model::Trace [−][src]
#[non_exhaustive]pub struct Trace {
pub id: Option<String>,
pub duration: Option<f64>,
pub limit_exceeded: Option<bool>,
pub segments: Option<Vec<Segment>>,
}
Expand description
A collection of segment documents with matching trace IDs.
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.id: Option<String>
The unique identifier for the request that generated the trace's segments and subsegments.
duration: Option<f64>
The length of time in seconds between the start time of the root segment and the end time of the last segment that completed.
limit_exceeded: Option<bool>
LimitExceeded is set to true when the trace has exceeded one of the defined quotas. For more information about quotas, see Amazon Web Services X-Ray endpoints and quotas.
segments: Option<Vec<Segment>>
Segment documents for the segments and subsegments that comprise the trace.
Implementations
The unique identifier for the request that generated the trace's segments and subsegments.
The length of time in seconds between the start time of the root segment and the end time of the last segment that completed.
LimitExceeded is set to true when the trace has exceeded one of the defined quotas. For more information about quotas, see Amazon Web Services X-Ray endpoints and quotas.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Trace
impl UnwindSafe for Trace
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