Struct gapi_grpc::google::cloud::dialogflow::v2::SpeechContext[][src]

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

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

Fields

phrases: 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:

See the Cloud Speech documentation for usage limits.

boost: f32

Optional. Boost for this context compared to other contexts:

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.

Trait Implementations

impl Clone for SpeechContext[src]

impl Debug for SpeechContext[src]

impl Default for SpeechContext[src]

impl Message for SpeechContext[src]

impl PartialEq<SpeechContext> for SpeechContext[src]

impl StructuralPartialEq for SpeechContext[src]

Auto Trait Implementations

impl RefUnwindSafe for SpeechContext

impl Send for SpeechContext

impl Sync for SpeechContext

impl Unpin for SpeechContext

impl UnwindSafe for SpeechContext

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]