#[non_exhaustive]pub struct DeleteUtterancesInput {
pub bot_id: Option<String>,
pub locale_id: Option<String>,
pub session_id: Option<String>,
}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.bot_id: Option<String>The unique identifier of the bot that contains the utterances.
locale_id: Option<String>The identifier of the language and locale where the utterances were collected. The string must match one of the supported locales. For more information, see Supported languages.
session_id: Option<String>The unique identifier of the session with the user. The ID is returned in the response from the RecognizeText and RecognizeUtterance operations.
Implementations§
source§impl DeleteUtterancesInput
impl DeleteUtterancesInput
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique identifier of the bot that contains the utterances.
sourcepub fn locale_id(&self) -> Option<&str>
pub fn locale_id(&self) -> Option<&str>
The identifier of the language and locale where the utterances were collected. The string must match one of the supported locales. For more information, see Supported languages.
sourcepub fn session_id(&self) -> Option<&str>
pub fn session_id(&self) -> Option<&str>
The unique identifier of the session with the user. The ID is returned in the response from the RecognizeText and RecognizeUtterance operations.
source§impl DeleteUtterancesInput
impl DeleteUtterancesInput
sourcepub fn builder() -> DeleteUtterancesInputBuilder
pub fn builder() -> DeleteUtterancesInputBuilder
Creates a new builder-style object to manufacture DeleteUtterancesInput.
Trait Implementations§
source§impl Clone for DeleteUtterancesInput
impl Clone for DeleteUtterancesInput
source§fn clone(&self) -> DeleteUtterancesInput
fn clone(&self) -> DeleteUtterancesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteUtterancesInput
impl Debug for DeleteUtterancesInput
source§impl PartialEq for DeleteUtterancesInput
impl PartialEq for DeleteUtterancesInput
impl StructuralPartialEq for DeleteUtterancesInput
Auto Trait Implementations§
impl Freeze for DeleteUtterancesInput
impl RefUnwindSafe for DeleteUtterancesInput
impl Send for DeleteUtterancesInput
impl Sync for DeleteUtterancesInput
impl Unpin for DeleteUtterancesInput
impl UnwindSafe for DeleteUtterancesInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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