#[non_exhaustive]pub struct AnalyticsUtteranceMetricResult {
pub name: Option<AnalyticsUtteranceMetricName>,
pub statistic: Option<AnalyticsMetricStatistic>,
pub value: Option<f64>,
}Expand description
An object containing the results for the utterance metric you requested.
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.name: Option<AnalyticsUtteranceMetricName>The metric that you requested.
-
Count– The number of utterances. -
Missed– The number of utterances that Amazon Lex failed to recognize. -
Detected– The number of utterances that Amazon Lex managed to detect. -
UtteranceTimestamp– The date and time of the utterance.
statistic: Option<AnalyticsMetricStatistic>The summary statistic that you requested to calculate.
-
Sum– The total count for the category you provide inname. -
Average– The total count divided by the number of utterances in the category you provide inname. -
Max– The highest count in the category you provide inname.
value: Option<f64>The value of the summary statistic for the metric that you requested.
Implementations§
source§impl AnalyticsUtteranceMetricResult
impl AnalyticsUtteranceMetricResult
sourcepub fn name(&self) -> Option<&AnalyticsUtteranceMetricName>
pub fn name(&self) -> Option<&AnalyticsUtteranceMetricName>
The metric that you requested.
-
Count– The number of utterances. -
Missed– The number of utterances that Amazon Lex failed to recognize. -
Detected– The number of utterances that Amazon Lex managed to detect. -
UtteranceTimestamp– The date and time of the utterance.
sourcepub fn statistic(&self) -> Option<&AnalyticsMetricStatistic>
pub fn statistic(&self) -> Option<&AnalyticsMetricStatistic>
The summary statistic that you requested to calculate.
-
Sum– The total count for the category you provide inname. -
Average– The total count divided by the number of utterances in the category you provide inname. -
Max– The highest count in the category you provide inname.
source§impl AnalyticsUtteranceMetricResult
impl AnalyticsUtteranceMetricResult
sourcepub fn builder() -> AnalyticsUtteranceMetricResultBuilder
pub fn builder() -> AnalyticsUtteranceMetricResultBuilder
Creates a new builder-style object to manufacture AnalyticsUtteranceMetricResult.
Trait Implementations§
source§impl Clone for AnalyticsUtteranceMetricResult
impl Clone for AnalyticsUtteranceMetricResult
source§fn clone(&self) -> AnalyticsUtteranceMetricResult
fn clone(&self) -> AnalyticsUtteranceMetricResult
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for AnalyticsUtteranceMetricResult
impl PartialEq for AnalyticsUtteranceMetricResult
source§fn eq(&self, other: &AnalyticsUtteranceMetricResult) -> bool
fn eq(&self, other: &AnalyticsUtteranceMetricResult) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AnalyticsUtteranceMetricResult
Auto Trait Implementations§
impl Freeze for AnalyticsUtteranceMetricResult
impl RefUnwindSafe for AnalyticsUtteranceMetricResult
impl Send for AnalyticsUtteranceMetricResult
impl Sync for AnalyticsUtteranceMetricResult
impl Unpin for AnalyticsUtteranceMetricResult
impl UnwindSafe for AnalyticsUtteranceMetricResult
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