Struct aws_sdk_xray::types::builders::ResponseTimeRootCauseBuilder
source · #[non_exhaustive]pub struct ResponseTimeRootCauseBuilder { /* private fields */ }
Expand description
A builder for ResponseTimeRootCause
.
Implementations§
source§impl ResponseTimeRootCauseBuilder
impl ResponseTimeRootCauseBuilder
sourcepub fn services(self, input: ResponseTimeRootCauseService) -> Self
pub fn services(self, input: ResponseTimeRootCauseService) -> Self
Appends an item to services
.
To override the contents of this collection use set_services
.
A list of corresponding services. A service identifies a segment and contains a name, account ID, type, and inferred flag.
sourcepub fn set_services(
self,
input: Option<Vec<ResponseTimeRootCauseService>>,
) -> Self
pub fn set_services( self, input: Option<Vec<ResponseTimeRootCauseService>>, ) -> Self
A list of corresponding services. A service identifies a segment and contains a name, account ID, type, and inferred flag.
sourcepub fn get_services(&self) -> &Option<Vec<ResponseTimeRootCauseService>>
pub fn get_services(&self) -> &Option<Vec<ResponseTimeRootCauseService>>
A list of corresponding services. A service identifies a segment and contains a name, account ID, type, and inferred flag.
sourcepub fn client_impacting(self, input: bool) -> Self
pub fn client_impacting(self, input: bool) -> Self
A flag that denotes that the root cause impacts the trace client.
sourcepub fn set_client_impacting(self, input: Option<bool>) -> Self
pub fn set_client_impacting(self, input: Option<bool>) -> Self
A flag that denotes that the root cause impacts the trace client.
sourcepub fn get_client_impacting(&self) -> &Option<bool>
pub fn get_client_impacting(&self) -> &Option<bool>
A flag that denotes that the root cause impacts the trace client.
sourcepub fn build(self) -> ResponseTimeRootCause
pub fn build(self) -> ResponseTimeRootCause
Consumes the builder and constructs a ResponseTimeRootCause
.
Trait Implementations§
source§impl Clone for ResponseTimeRootCauseBuilder
impl Clone for ResponseTimeRootCauseBuilder
source§fn clone(&self) -> ResponseTimeRootCauseBuilder
fn clone(&self) -> ResponseTimeRootCauseBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ResponseTimeRootCauseBuilder
impl Debug for ResponseTimeRootCauseBuilder
source§impl Default for ResponseTimeRootCauseBuilder
impl Default for ResponseTimeRootCauseBuilder
source§fn default() -> ResponseTimeRootCauseBuilder
fn default() -> ResponseTimeRootCauseBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ResponseTimeRootCauseBuilder
impl PartialEq for ResponseTimeRootCauseBuilder
source§fn eq(&self, other: &ResponseTimeRootCauseBuilder) -> bool
fn eq(&self, other: &ResponseTimeRootCauseBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ResponseTimeRootCauseBuilder
Auto Trait Implementations§
impl Freeze for ResponseTimeRootCauseBuilder
impl RefUnwindSafe for ResponseTimeRootCauseBuilder
impl Send for ResponseTimeRootCauseBuilder
impl Sync for ResponseTimeRootCauseBuilder
impl Unpin for ResponseTimeRootCauseBuilder
impl UnwindSafe for ResponseTimeRootCauseBuilder
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.