Struct aws_sdk_lexruntime::model::PredictedIntent
source · [−]#[non_exhaustive]pub struct PredictedIntent { /* private fields */ }Expand description
An intent that Amazon Lex suggests satisfies the user's intent. Includes the name of the intent, the confidence that Amazon Lex has that the user's intent is satisfied, and the slots defined for the intent.
Implementations
sourceimpl PredictedIntent
impl PredictedIntent
sourcepub fn intent_name(&self) -> Option<&str>
pub fn intent_name(&self) -> Option<&str>
The name of the intent that Amazon Lex suggests satisfies the user's intent.
sourcepub fn nlu_intent_confidence(&self) -> Option<&IntentConfidence>
pub fn nlu_intent_confidence(&self) -> Option<&IntentConfidence>
Indicates how confident Amazon Lex is that an intent satisfies the user's intent.
sourceimpl PredictedIntent
impl PredictedIntent
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PredictedIntent.
Trait Implementations
sourceimpl Clone for PredictedIntent
impl Clone for PredictedIntent
sourcefn clone(&self) -> PredictedIntent
fn clone(&self) -> PredictedIntent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for PredictedIntent
impl Debug for PredictedIntent
sourceimpl PartialEq<PredictedIntent> for PredictedIntent
impl PartialEq<PredictedIntent> for PredictedIntent
sourcefn eq(&self, other: &PredictedIntent) -> bool
fn eq(&self, other: &PredictedIntent) -> bool
impl StructuralPartialEq for PredictedIntent
Auto Trait Implementations
impl RefUnwindSafe for PredictedIntent
impl Send for PredictedIntent
impl Sync for PredictedIntent
impl Unpin for PredictedIntent
impl UnwindSafe for PredictedIntent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more