Struct aws_sdk_xray::model::Edge
source · [−]#[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
sourceimpl Edge
impl Edge
sourcepub fn reference_id(&self) -> Option<i32>
pub fn reference_id(&self) -> Option<i32>
Identifier of the edge. Unique within a service map.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The start time of the first segment on the edge.
sourcepub fn summary_statistics(&self) -> Option<&EdgeStatistics>
pub fn summary_statistics(&self) -> Option<&EdgeStatistics>
Response statistics for segments on the edge.
sourcepub fn response_time_histogram(&self) -> Option<&[HistogramEntry]>
pub fn response_time_histogram(&self) -> Option<&[HistogramEntry]>
A histogram that maps the spread of client response times on an edge.
Trait Implementations
impl StructuralPartialEq for Edge
Auto Trait Implementations
impl RefUnwindSafe for Edge
impl Send for Edge
impl Sync for Edge
impl Unpin for Edge
impl UnwindSafe for Edge
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more