Struct google_speech1_beta1::RecognitionConfig[][src]

pub struct RecognitionConfig {
    pub language_code: Option<String>,
    pub speech_context: Option<SpeechContext>,
    pub encoding: Option<String>,
    pub profanity_filter: Option<bool>,
    pub sample_rate: Option<i32>,
    pub max_alternatives: Option<i32>,
}

Provides information to the recognizer that specifies how to process the request.

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

Fields

Optional The language of the supplied audio as a BCP-47 language tag. Example: "en-GB" https://www.rfc-editor.org/rfc/bcp/bcp47.txt If omitted, defaults to "en-US". See Language Support for a list of the currently supported language codes.

Optional A means to provide context to assist the speech recognition.

Required Encoding of audio data sent in all RecognitionAudio messages.

Optional If set to true, the server will attempt to filter out profanities, replacing all but the initial character in each filtered word with asterisks, e.g. "f***". If set to false or omitted, profanities won't be filtered out.

Required Sample rate in Hertz of the audio data sent in all RecognitionAudio messages. Valid values are: 8000-48000. 16000 is optimal. For best results, set the sampling rate of the audio source to 16000 Hz. If that's not possible, use the native sample rate of the audio source (instead of re-sampling).

Optional Maximum number of recognition hypotheses to be returned. Specifically, the maximum number of SpeechRecognitionAlternative messages within each SpeechRecognitionResult. The server may return fewer than max_alternatives. Valid values are 0-30. A value of 0 or 1 will return a maximum of one. If omitted, will return a maximum of one.

Trait Implementations

impl Default for RecognitionConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for RecognitionConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RecognitionConfig
[src]

Formats the value using the given formatter. Read more

impl Part for RecognitionConfig
[src]

Auto Trait Implementations