#[non_exhaustive]pub struct IntentClassificationTestResultItemCounts {
pub total_result_count: i32,
pub speech_transcription_result_counts: Option<HashMap<TestResultMatchStatus, i32>>,
pub intent_match_result_counts: HashMap<TestResultMatchStatus, i32>,
}
Expand description
The number of items in the intent classification test.
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 in the intent classification test.
speech_transcription_result_counts: Option<HashMap<TestResultMatchStatus, i32>>
The number of matched, mismatched, and execution error results for speech transcription for the intent.
intent_match_result_counts: HashMap<TestResultMatchStatus, i32>
The number of matched and mismatched results for intent recognition for the intent.
Implementations§
source§impl IntentClassificationTestResultItemCounts
impl IntentClassificationTestResultItemCounts
sourcepub fn total_result_count(&self) -> i32
pub fn total_result_count(&self) -> i32
The total number of results in the intent classification test.
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 intent.
sourcepub fn intent_match_result_counts(&self) -> &HashMap<TestResultMatchStatus, i32>
pub fn intent_match_result_counts(&self) -> &HashMap<TestResultMatchStatus, i32>
The number of matched and mismatched results for intent recognition for the intent.
source§impl IntentClassificationTestResultItemCounts
impl IntentClassificationTestResultItemCounts
sourcepub fn builder() -> IntentClassificationTestResultItemCountsBuilder
pub fn builder() -> IntentClassificationTestResultItemCountsBuilder
Creates a new builder-style object to manufacture IntentClassificationTestResultItemCounts
.
Trait Implementations§
source§impl Clone for IntentClassificationTestResultItemCounts
impl Clone for IntentClassificationTestResultItemCounts
source§fn clone(&self) -> IntentClassificationTestResultItemCounts
fn clone(&self) -> IntentClassificationTestResultItemCounts
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 IntentClassificationTestResultItemCounts
impl PartialEq for IntentClassificationTestResultItemCounts
source§fn eq(&self, other: &IntentClassificationTestResultItemCounts) -> bool
fn eq(&self, other: &IntentClassificationTestResultItemCounts) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IntentClassificationTestResultItemCounts
Auto Trait Implementations§
impl RefUnwindSafe for IntentClassificationTestResultItemCounts
impl Send for IntentClassificationTestResultItemCounts
impl Sync for IntentClassificationTestResultItemCounts
impl Unpin for IntentClassificationTestResultItemCounts
impl UnwindSafe for IntentClassificationTestResultItemCounts
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.