#[non_exhaustive]pub struct IntentClassificationTestResultItem {
pub intent_name: String,
pub multi_turn_conversation: bool,
pub result_counts: Option<IntentClassificationTestResultItemCounts>,
}
Expand description
Information for an intent that is classified by the test workbench.
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.intent_name: String
The name of the intent.
multi_turn_conversation: bool
Indicates whether the conversation involves multiple turns or not.
result_counts: Option<IntentClassificationTestResultItemCounts>
The result of the intent classification test.
Implementations§
source§impl IntentClassificationTestResultItem
impl IntentClassificationTestResultItem
sourcepub fn intent_name(&self) -> &str
pub fn intent_name(&self) -> &str
The name of the intent.
sourcepub fn multi_turn_conversation(&self) -> bool
pub fn multi_turn_conversation(&self) -> bool
Indicates whether the conversation involves multiple turns or not.
sourcepub fn result_counts(&self) -> Option<&IntentClassificationTestResultItemCounts>
pub fn result_counts(&self) -> Option<&IntentClassificationTestResultItemCounts>
The result of the intent classification test.
source§impl IntentClassificationTestResultItem
impl IntentClassificationTestResultItem
sourcepub fn builder() -> IntentClassificationTestResultItemBuilder
pub fn builder() -> IntentClassificationTestResultItemBuilder
Creates a new builder-style object to manufacture IntentClassificationTestResultItem
.
Trait Implementations§
source§impl Clone for IntentClassificationTestResultItem
impl Clone for IntentClassificationTestResultItem
source§fn clone(&self) -> IntentClassificationTestResultItem
fn clone(&self) -> IntentClassificationTestResultItem
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 IntentClassificationTestResultItem
impl PartialEq for IntentClassificationTestResultItem
source§fn eq(&self, other: &IntentClassificationTestResultItem) -> bool
fn eq(&self, other: &IntentClassificationTestResultItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IntentClassificationTestResultItem
Auto Trait Implementations§
impl RefUnwindSafe for IntentClassificationTestResultItem
impl Send for IntentClassificationTestResultItem
impl Sync for IntentClassificationTestResultItem
impl Unpin for IntentClassificationTestResultItem
impl UnwindSafe for IntentClassificationTestResultItem
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.