#[non_exhaustive]pub enum Input {
TextInput(Box<TextInput>),
AudioInput(Box<AudioInput>),
EventInput(Box<EventInput>),
SuggestionInput(Box<SuggestionInput>),
}Available on crate feature
participants only.Expand description
Required. The input content.
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.
TextInput(Box<TextInput>)
The natural language text to be processed.
AudioInput(Box<AudioInput>)
The natural language speech audio to be processed.
EventInput(Box<EventInput>)
An input event to send to Dialogflow.
SuggestionInput(Box<SuggestionInput>)
An input representing the selection of a suggestion.
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