Struct google_dialogflow2::api::GoogleCloudDialogflowV2SpeechContext[][src]

pub struct GoogleCloudDialogflowV2SpeechContext {
    pub boost: Option<f32>,
    pub phrases: Option<Vec<String>>,
}

Hints for the speech recognizer to help with recognition in a specific conversation state.

This type is not used in any activity, and only used as part of another schema.

Fields

boost: Option<f32>

Optional. Boost for this context compared to other contexts: * If the boost is positive, Dialogflow will increase the probability that the phrases in this context are recognized over similar sounding phrases. * If the boost is unspecified or non-positive, Dialogflow will not apply any boost. Dialogflow recommends that you use boosts in the range (0, 20] and that you find a value that fits your use case with binary search.

phrases: Option<Vec<String>>

Optional. A list of strings containing words and phrases that the speech recognizer should recognize with higher likelihood. This list can be used to: * improve accuracy for words and phrases you expect the user to say, e.g. typical commands for your Dialogflow agent * add additional words to the speech recognizer vocabulary * ... See the Cloud Speech documentation for usage limits.

Trait Implementations

impl Clone for GoogleCloudDialogflowV2SpeechContext[src]

impl Debug for GoogleCloudDialogflowV2SpeechContext[src]

impl Default for GoogleCloudDialogflowV2SpeechContext[src]

impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2SpeechContext[src]

impl Part for GoogleCloudDialogflowV2SpeechContext[src]

impl Serialize for GoogleCloudDialogflowV2SpeechContext[src]

Auto Trait Implementations

impl RefUnwindSafe for GoogleCloudDialogflowV2SpeechContext[src]

impl Send for GoogleCloudDialogflowV2SpeechContext[src]

impl Sync for GoogleCloudDialogflowV2SpeechContext[src]

impl Unpin for GoogleCloudDialogflowV2SpeechContext[src]

impl UnwindSafe for GoogleCloudDialogflowV2SpeechContext[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.