#[non_exhaustive]pub struct GetTraceSummariesOutput {
pub trace_summaries: Option<Vec<TraceSummary>>,
pub approximate_time: Option<DateTime>,
pub traces_processed_count: Option<i64>,
pub next_token: Option<String>,
/* private fields */
}
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.trace_summaries: Option<Vec<TraceSummary>>
Trace IDs and annotations for traces that were found in the specified time frame.
approximate_time: Option<DateTime>
The start time of this page of results.
traces_processed_count: Option<i64>
The total number of traces processed, including traces that did not match the specified filter expression.
next_token: Option<String>
If the requested time frame contained more than one page of results, you can use this token to retrieve the next page. The first page contains the most recent results, closest to the end of the time frame.
Implementations§
source§impl GetTraceSummariesOutput
impl GetTraceSummariesOutput
sourcepub fn trace_summaries(&self) -> &[TraceSummary]
pub fn trace_summaries(&self) -> &[TraceSummary]
Trace IDs and annotations for traces that were found in the specified time frame.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .trace_summaries.is_none()
.
sourcepub fn approximate_time(&self) -> Option<&DateTime>
pub fn approximate_time(&self) -> Option<&DateTime>
The start time of this page of results.
sourcepub fn traces_processed_count(&self) -> Option<i64>
pub fn traces_processed_count(&self) -> Option<i64>
The total number of traces processed, including traces that did not match the specified filter expression.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the requested time frame contained more than one page of results, you can use this token to retrieve the next page. The first page contains the most recent results, closest to the end of the time frame.
source§impl GetTraceSummariesOutput
impl GetTraceSummariesOutput
sourcepub fn builder() -> GetTraceSummariesOutputBuilder
pub fn builder() -> GetTraceSummariesOutputBuilder
Creates a new builder-style object to manufacture GetTraceSummariesOutput
.
Trait Implementations§
source§impl Clone for GetTraceSummariesOutput
impl Clone for GetTraceSummariesOutput
source§fn clone(&self) -> GetTraceSummariesOutput
fn clone(&self) -> GetTraceSummariesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetTraceSummariesOutput
impl Debug for GetTraceSummariesOutput
source§impl PartialEq for GetTraceSummariesOutput
impl PartialEq for GetTraceSummariesOutput
source§impl RequestId for GetTraceSummariesOutput
impl RequestId for GetTraceSummariesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetTraceSummariesOutput
Auto Trait Implementations§
impl Freeze for GetTraceSummariesOutput
impl RefUnwindSafe for GetTraceSummariesOutput
impl Send for GetTraceSummariesOutput
impl Sync for GetTraceSummariesOutput
impl Unpin for GetTraceSummariesOutput
impl UnwindSafe for GetTraceSummariesOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more