pub struct GoogleCloudDialogflowV2DetectIntentRequest {
pub input_audio: Option<Vec<u8>>,
pub output_audio_config: Option<GoogleCloudDialogflowV2OutputAudioConfig>,
pub output_audio_config_mask: Option<FieldMask>,
pub query_input: Option<GoogleCloudDialogflowV2QueryInput>,
pub query_params: Option<GoogleCloudDialogflowV2QueryParameters>,
}
Expand description
The request to detect user’s intent.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§input_audio: Option<Vec<u8>>
The natural language speech audio to be processed. This field should be populated iff query_input
is set to an input audio config. A single request can contain up to 1 minute of speech audio data.
output_audio_config: Option<GoogleCloudDialogflowV2OutputAudioConfig>
Instructs the speech synthesizer how to generate the output audio. If this field is not set and agent-level speech synthesizer is not configured, no output audio is generated.
output_audio_config_mask: Option<FieldMask>
Mask for output_audio_config indicating which settings in this request-level config should override speech synthesizer settings defined at agent-level. If unspecified or empty, output_audio_config replaces the agent-level config in its entirety.
query_input: Option<GoogleCloudDialogflowV2QueryInput>
Required. The input specification. It can be set to: 1. an audio config which instructs the speech recognizer how to process the speech audio, 2. a conversational query in the form of text, or 3. an event that specifies which intent to trigger.
query_params: Option<GoogleCloudDialogflowV2QueryParameters>
The parameters of this query.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowV2DetectIntentRequest
impl Clone for GoogleCloudDialogflowV2DetectIntentRequest
Source§fn clone(&self) -> GoogleCloudDialogflowV2DetectIntentRequest
fn clone(&self) -> GoogleCloudDialogflowV2DetectIntentRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDialogflowV2DetectIntentRequest
impl Default for GoogleCloudDialogflowV2DetectIntentRequest
Source§fn default() -> GoogleCloudDialogflowV2DetectIntentRequest
fn default() -> GoogleCloudDialogflowV2DetectIntentRequest
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2DetectIntentRequest
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2DetectIntentRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for GoogleCloudDialogflowV2DetectIntentRequest
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2DetectIntentRequest
impl RefUnwindSafe for GoogleCloudDialogflowV2DetectIntentRequest
impl Send for GoogleCloudDialogflowV2DetectIntentRequest
impl Sync for GoogleCloudDialogflowV2DetectIntentRequest
impl Unpin for GoogleCloudDialogflowV2DetectIntentRequest
impl UnwindSafe for GoogleCloudDialogflowV2DetectIntentRequest
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§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