#[non_exhaustive]pub enum Input {
AudioConfig(Box<InputAudioConfig>),
Text(Box<TextInput>),
Event(Box<EventInput>),
}Available on crate feature
sessions only.Expand description
Required. The input specification.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AudioConfig(Box<InputAudioConfig>)
Instructs the speech recognizer how to process the speech audio.
Text(Box<TextInput>)
The natural language text to be processed. Text length must not exceed 256 character for virtual agent interactions.
Event(Box<EventInput>)
The event to be processed.
Trait Implementations§
impl StructuralPartialEq for Input
Auto Trait Implementations§
impl Freeze for Input
impl RefUnwindSafe for Input
impl Send for Input
impl Sync for Input
impl Unpin for Input
impl UnwindSafe for Input
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