Struct aws_sdk_connect::types::builders::QualityMetricsBuilder
source · #[non_exhaustive]pub struct QualityMetricsBuilder { /* private fields */ }
Expand description
A builder for QualityMetrics
.
Implementations§
source§impl QualityMetricsBuilder
impl QualityMetricsBuilder
sourcepub fn agent(self, input: AgentQualityMetrics) -> Self
pub fn agent(self, input: AgentQualityMetrics) -> Self
Information about the quality of Agent media connection.
sourcepub fn set_agent(self, input: Option<AgentQualityMetrics>) -> Self
pub fn set_agent(self, input: Option<AgentQualityMetrics>) -> Self
Information about the quality of Agent media connection.
sourcepub fn get_agent(&self) -> &Option<AgentQualityMetrics>
pub fn get_agent(&self) -> &Option<AgentQualityMetrics>
Information about the quality of Agent media connection.
sourcepub fn customer(self, input: CustomerQualityMetrics) -> Self
pub fn customer(self, input: CustomerQualityMetrics) -> Self
Information about the quality of Customer media connection.
sourcepub fn set_customer(self, input: Option<CustomerQualityMetrics>) -> Self
pub fn set_customer(self, input: Option<CustomerQualityMetrics>) -> Self
Information about the quality of Customer media connection.
sourcepub fn get_customer(&self) -> &Option<CustomerQualityMetrics>
pub fn get_customer(&self) -> &Option<CustomerQualityMetrics>
Information about the quality of Customer media connection.
sourcepub fn build(self) -> QualityMetrics
pub fn build(self) -> QualityMetrics
Consumes the builder and constructs a QualityMetrics
.
Trait Implementations§
source§impl Clone for QualityMetricsBuilder
impl Clone for QualityMetricsBuilder
source§fn clone(&self) -> QualityMetricsBuilder
fn clone(&self) -> QualityMetricsBuilder
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 QualityMetricsBuilder
impl Debug for QualityMetricsBuilder
source§impl Default for QualityMetricsBuilder
impl Default for QualityMetricsBuilder
source§fn default() -> QualityMetricsBuilder
fn default() -> QualityMetricsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for QualityMetricsBuilder
impl PartialEq for QualityMetricsBuilder
source§fn eq(&self, other: &QualityMetricsBuilder) -> bool
fn eq(&self, other: &QualityMetricsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for QualityMetricsBuilder
Auto Trait Implementations§
impl Freeze for QualityMetricsBuilder
impl RefUnwindSafe for QualityMetricsBuilder
impl Send for QualityMetricsBuilder
impl Sync for QualityMetricsBuilder
impl Unpin for QualityMetricsBuilder
impl UnwindSafe for QualityMetricsBuilder
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> 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.