#[non_exhaustive]pub struct SlotResolutionTestResultItemCounts {
pub total_result_count: i32,
pub speech_transcription_result_counts: Option<HashMap<TestResultMatchStatus, i32>>,
pub slot_match_result_counts: HashMap<TestResultMatchStatus, i32>,
}
Expand description
Information about the counts for a slot resolution in the results of a test execution.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.total_result_count: i32
The total number of results.
speech_transcription_result_counts: Option<HashMap<TestResultMatchStatus, i32>>
The number of matched, mismatched and execution error results for speech transcription for the slot.
slot_match_result_counts: HashMap<TestResultMatchStatus, i32>
The number of matched and mismatched results for slot resolution for the slot.
Implementations§
source§impl SlotResolutionTestResultItemCounts
impl SlotResolutionTestResultItemCounts
sourcepub fn total_result_count(&self) -> i32
pub fn total_result_count(&self) -> i32
The total number of results.
sourcepub fn speech_transcription_result_counts(
&self
) -> Option<&HashMap<TestResultMatchStatus, i32>>
pub fn speech_transcription_result_counts( &self ) -> Option<&HashMap<TestResultMatchStatus, i32>>
The number of matched, mismatched and execution error results for speech transcription for the slot.
sourcepub fn slot_match_result_counts(&self) -> &HashMap<TestResultMatchStatus, i32>
pub fn slot_match_result_counts(&self) -> &HashMap<TestResultMatchStatus, i32>
The number of matched and mismatched results for slot resolution for the slot.
source§impl SlotResolutionTestResultItemCounts
impl SlotResolutionTestResultItemCounts
sourcepub fn builder() -> SlotResolutionTestResultItemCountsBuilder
pub fn builder() -> SlotResolutionTestResultItemCountsBuilder
Creates a new builder-style object to manufacture SlotResolutionTestResultItemCounts
.
Trait Implementations§
source§impl Clone for SlotResolutionTestResultItemCounts
impl Clone for SlotResolutionTestResultItemCounts
source§fn clone(&self) -> SlotResolutionTestResultItemCounts
fn clone(&self) -> SlotResolutionTestResultItemCounts
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 PartialEq for SlotResolutionTestResultItemCounts
impl PartialEq for SlotResolutionTestResultItemCounts
source§fn eq(&self, other: &SlotResolutionTestResultItemCounts) -> bool
fn eq(&self, other: &SlotResolutionTestResultItemCounts) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SlotResolutionTestResultItemCounts
Auto Trait Implementations§
impl RefUnwindSafe for SlotResolutionTestResultItemCounts
impl Send for SlotResolutionTestResultItemCounts
impl Sync for SlotResolutionTestResultItemCounts
impl Unpin for SlotResolutionTestResultItemCounts
impl UnwindSafe for SlotResolutionTestResultItemCounts
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>
Creates a shared type from an unshared type.