Struct aws_sdk_connect::types::AudioQualityMetricsInfo
source · #[non_exhaustive]pub struct AudioQualityMetricsInfo {
pub quality_score: f32,
pub potential_quality_issues: Option<Vec<String>>,
}
Expand description
Contains information for score and potential quality issues for Audio
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.quality_score: f32
Number measuring the estimated quality of the media connection.
potential_quality_issues: Option<Vec<String>>
List of potential issues causing degradation of quality on a media connection. If the service did not detect any potential quality issues the list is empty.
Valid values: HighPacketLoss
| HighRoundTripTime
| HighJitterBuffer
Implementations§
source§impl AudioQualityMetricsInfo
impl AudioQualityMetricsInfo
sourcepub fn quality_score(&self) -> f32
pub fn quality_score(&self) -> f32
Number measuring the estimated quality of the media connection.
sourcepub fn potential_quality_issues(&self) -> &[String]
pub fn potential_quality_issues(&self) -> &[String]
List of potential issues causing degradation of quality on a media connection. If the service did not detect any potential quality issues the list is empty.
Valid values: HighPacketLoss
| HighRoundTripTime
| HighJitterBuffer
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .potential_quality_issues.is_none()
.
source§impl AudioQualityMetricsInfo
impl AudioQualityMetricsInfo
sourcepub fn builder() -> AudioQualityMetricsInfoBuilder
pub fn builder() -> AudioQualityMetricsInfoBuilder
Creates a new builder-style object to manufacture AudioQualityMetricsInfo
.
Trait Implementations§
source§impl Clone for AudioQualityMetricsInfo
impl Clone for AudioQualityMetricsInfo
source§fn clone(&self) -> AudioQualityMetricsInfo
fn clone(&self) -> AudioQualityMetricsInfo
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AudioQualityMetricsInfo
impl Debug for AudioQualityMetricsInfo
source§impl PartialEq for AudioQualityMetricsInfo
impl PartialEq for AudioQualityMetricsInfo
source§fn eq(&self, other: &AudioQualityMetricsInfo) -> bool
fn eq(&self, other: &AudioQualityMetricsInfo) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AudioQualityMetricsInfo
Auto Trait Implementations§
impl Freeze for AudioQualityMetricsInfo
impl RefUnwindSafe for AudioQualityMetricsInfo
impl Send for AudioQualityMetricsInfo
impl Sync for AudioQualityMetricsInfo
impl Unpin for AudioQualityMetricsInfo
impl UnwindSafe for AudioQualityMetricsInfo
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> 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